.NET Format Style Fixes
This commit is contained in:
@@ -9,18 +9,10 @@ public record VersionValidateRequestData : IRequestData
|
||||
public Dictionary<string, object> ExtensionData { get; set; }
|
||||
|
||||
[JsonPropertyName("version")]
|
||||
public Version? Version
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public Version? Version { get; set; }
|
||||
|
||||
[JsonPropertyName("develop")]
|
||||
public bool? Develop
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public bool? Develop { get; set; }
|
||||
}
|
||||
|
||||
public record Version
|
||||
@@ -29,37 +21,17 @@ public record Version
|
||||
public Dictionary<string, object> ExtensionData { get; set; }
|
||||
|
||||
[JsonPropertyName("major")]
|
||||
public string? Major
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Major { get; set; }
|
||||
|
||||
[JsonPropertyName("minor")]
|
||||
public string? Minor
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Minor { get; set; }
|
||||
|
||||
[JsonPropertyName("game")]
|
||||
public string? Game
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Game { get; set; }
|
||||
|
||||
[JsonPropertyName("backend")]
|
||||
public string? Backend
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Backend { get; set; }
|
||||
|
||||
[JsonPropertyName("taxonomy")]
|
||||
public string? Taxonomy
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string? Taxonomy { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user