0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 08:30:45 -05:00
modules/project/SPT.Common/Models/Logging/ServerLogRequest.cs
2024-05-21 19:10:17 +01:00

16 lines
440 B
C#

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.ComponentModel;
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; }
}
}