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,6 +5,9 @@ namespace Prospect.Server.Api.Models.Client;
public class FAddGenericIDRequest
{
/// <summary>
/// Generic service identifier to add to the player account.
/// </summary>
[JsonPropertyName("GenericId")]
public FGenericServiceId GenericId { get; set; }
public FGenericServiceId GenericId { get; set; } = null!;
}