Files
SPT-Server-Build/Core/Models/Spt/Logging/ClientLogRequest.cs
T
2025-01-12 15:40:28 +00:00

24 lines
581 B
C#

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