.NET Format Style Fixes
This commit is contained in:
+5
-25
@@ -10,40 +10,20 @@ public record PresetBuildActionRequestData : IRequestData
|
||||
public Dictionary<string, object> ExtensionData { get; set; }
|
||||
|
||||
[JsonPropertyName("Action")]
|
||||
public string? Action
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Action { get; set; }
|
||||
|
||||
[JsonPropertyName("Id")]
|
||||
public string? Id
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// name of preset given by player
|
||||
/// </summary>
|
||||
[JsonPropertyName("Name")]
|
||||
public string? Name
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Name { get; set; }
|
||||
|
||||
[JsonPropertyName("Root")]
|
||||
public string? Root
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Root { get; set; }
|
||||
|
||||
[JsonPropertyName("Items")]
|
||||
public List<Item>? Items
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public List<Item>? Items { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user