Enable explicit nullable definition for Core

This commit is contained in:
2024-10-31 13:01:54 +01:00
parent 25c8e9b5b0
commit eadd35ac09
9 changed files with 27 additions and 26 deletions

View File

@@ -10,12 +10,12 @@
/// </summary>
// <= 32 characters
[JsonProperty("id")]
public string Id { get; set; }
public string? Id { get; set; }
/// <summary>
/// The name of the account.
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
public string? Name { get; set; }
}
}