addded more types, some are unfinished, ill come back to these tomorrow

This commit is contained in:
CWX
2025-01-06 00:32:55 +00:00
parent 529b091029
commit 2f997f6a85
53 changed files with 1938 additions and 12 deletions
@@ -0,0 +1,21 @@
using System.Text.Json.Serialization;
namespace Types.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; }
}