.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
@@ -10,61 +10,29 @@ public record StartLocalRaidRequestData : IRequestData
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("serverId")]
public string? ServerId
{
get;
set;
}
public string? ServerId { get; set; }
[JsonPropertyName("location")]
public string? Location
{
get;
set;
}
public string? Location { get; set; }
[JsonPropertyName("timeVariant")]
public string? TimeVariant
{
get;
set;
}
public string? TimeVariant { get; set; }
[JsonPropertyName("mode")]
public string? Mode
{
get;
set;
}
public string? Mode { get; set; }
[JsonPropertyName("playerSide")]
public string? PlayerSide
{
get;
set;
}
public string? PlayerSide { get; set; }
[JsonPropertyName("transitionType")]
public TransitionType? TransitionType
{
get;
set;
}
public TransitionType? TransitionType { get; set; }
[JsonPropertyName("transition")]
public Transition? Transition
{
get;
set;
}
public Transition? Transition { get; set; }
/// <summary>
/// Should loot generation be skipped, default false
/// </summary>
[JsonPropertyName("sptSkipLootGeneration")]
public bool? ShouldSkipLootGeneration
{
get;
set;
}
public bool? ShouldSkipLootGeneration { get; set; }
}