addded more types, some are unfinished, ill come back to these tomorrow
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user