0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 00:30:44 -05:00
modules/project/SPT.Common/Models/Logging/ServerLogRequest.cs

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; }
}
}