Add nullable support

This commit is contained in:
AeonLucid
2022-01-07 07:09:50 +01:00
parent 2f01cf7411
commit bf14074046
44 changed files with 349 additions and 170 deletions
@@ -5,7 +5,7 @@ namespace Prospect.Server.Api.Models.CloudScript.Data;
public class FYFactionContractData
{
[JsonPropertyName("contractId")]
public string ContractId { get; set; }
public string ContractId { get; set; } = null!;
[JsonPropertyName("contractIsLockedDueToLowFactionReputation")]
public bool ContractIsLockedDueToLowFactionReputation { get; set; }