fixed warnings

This commit is contained in:
2023-01-04 21:43:18 -07:00
parent c350a8487e
commit 8fec96ce5c
6 changed files with 22 additions and 24 deletions

View File

@@ -8,6 +8,9 @@ public record UserDisplayModel
[property: JsonPropertyName("html_url")]
string HtmlUrl,
[property: JsonPropertyName("anonymous_id")]
string AnonymousId,
[property: JsonPropertyName("id")]
ulong? Id = null,
@@ -18,8 +21,5 @@ public record UserDisplayModel
string? DisplayName = null,
[property: JsonPropertyName("pronouns")]
string? Pronouns = null,
[property: JsonPropertyName("anonymous_id")]
string AnonymousId = null
string? Pronouns = null
);