Files
SPT-Server-Build/Core/Models/Spt/Logging/ClientLogRequest.cs
T
2025-01-08 14:01:23 +00:00

21 lines
498 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Logging;
public class ClientLogRequest
{
[JsonPropertyName("Source")]
public string? Source { get; set; }
[JsonPropertyName("Level")]
public LogLevel? Level { get; set; }
[JsonPropertyName("Message")]
public string? Message { get; set; }
[JsonPropertyName("Color")]
public string? Color { get; set; }
[JsonPropertyName("BackgroundColor")]
public string? BackgroundColor { get; set; }
}