initial change of nullables and few more generators

This commit is contained in:
CWX
2025-01-08 13:16:38 +00:00
parent 7b7f5cf9d2
commit 3ca974de8a
118 changed files with 1050 additions and 947 deletions
@@ -6,26 +6,26 @@ namespace Core.Models.Eft.Match;
public class StartLocalRaidRequestData
{
[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; }
/** Should loot generation be skipped, default false */
[JsonPropertyName("sptSkipLootGeneration")]
public bool? ShouldSkipLootGeneration { get; set; }