.NET Format Style Fixes
This commit is contained in:
@@ -10,40 +10,20 @@ public record ClientLogRequest : IRequestData
|
||||
public Dictionary<string, object> ExtensionData { get; set; }
|
||||
|
||||
[JsonPropertyName("Source")]
|
||||
public string? Source
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Source { get; set; }
|
||||
|
||||
[JsonPropertyName("Level")]
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public LogLevel? Level
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public LogLevel? Level { get; set; }
|
||||
|
||||
[JsonPropertyName("Message")]
|
||||
public string? Message
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Message { get; set; }
|
||||
|
||||
[JsonPropertyName("Color")]
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public LogTextColor? Color
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public LogTextColor? Color { get; set; }
|
||||
|
||||
[JsonPropertyName("BackgroundColor")]
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public LogBackgroundColor? BackgroundColor
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public LogBackgroundColor? BackgroundColor { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user