mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:30:46 -05:00
12 lines
353 B
C#
12 lines
353 B
C#
namespace SPT.Common.Models.Logging
|
|
{
|
|
public class ServerLogRequest
|
|
{
|
|
public string Source { get; set; }
|
|
public EServerLogLevel Level { get; set; }
|
|
public string Message { get; set; }
|
|
public EServerLogTextColor Color { get; set; }
|
|
public EServerLogBackgroundColor BackgroundColor { get; set; }
|
|
}
|
|
}
|