.NET Format Style Fixes
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user