Files
SPT-Server-Build/Core/Models/Spt/Logging/ClientLogRequest.cs
T
CWX bb887b0901 Lots of new things (#40)
* callbacks

* controllers

* Router override

* make requests use interface

* create Routers

* extra parts
2025-01-12 15:35:32 +00:00

23 lines
539 B
C#

using System.Text.Json.Serialization;
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 string? Color { get; set; }
[JsonPropertyName("BackgroundColor")]
public string? BackgroundColor { get; set; }
}