get rid of semicolons

This commit is contained in:
axell 2024-07-06 13:21:06 +02:00 committed by GitHub
parent 7005b440f1
commit 6b7f08bad6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,18 +9,18 @@
public string ProfileDescription { get; set; } public string ProfileDescription { get; set; }
[JsonPropertyName("created")] [JsonPropertyName("created")]
public string JoinDate { get; set; }; public string JoinDate { get; set; }
[JsonPropertyName("isBanned")] [JsonPropertyName("isBanned")]
public bool IsBanned { get; set; }; public bool IsBanned { get; set; }
[JsonPropertyName("hasVerifiedBadge")] [JsonPropertyName("hasVerifiedBadge")]
public bool HasVerifiedBadge { get; set; }; public bool HasVerifiedBadge { get; set; }
[JsonPropertyName("name")] [JsonPropertyName("name")]
public string Username { get; set; }; public string Username { get; set; }
[JsonPropertyName("displayName")] [JsonPropertyName("displayName")]
public string DisplayName { get; set; }; public string DisplayName { get; set; }
} }
} }