mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 08:50:43 -05:00
16 lines
440 B
C#
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; }
|
|
}
|
|
}
|