.NET Format Style Fixes

This commit is contained in:
refringe
2025-06-18 17:09:20 +00:00
committed by Format Bot
parent ca0a7d6345
commit 6e01428b2b
774 changed files with 23507 additions and 40003 deletions
@@ -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; }
}