Accidentally typed user instead of id for the ID property

This commit is contained in:
barelyprofessional
2025-03-22 14:16:10 +08:00
parent 4523fe8e15
commit 8c6591cb2c

View File

@@ -38,7 +38,7 @@ public class ClashggBetModel
// {"id":3122766,"role":"user","name":"nettspend","avatar":"https://avatars.steamstatic.com/6ceb09420f55ca4e84769169fad1436c0f1b6053_full.jpg","xp":28452,"isVerified":false,"isPrivate":false,"premiumUntil":null}
public class ClashggWsUserModel
{
[JsonPropertyName("user")]
[JsonPropertyName("id")]
public required int Id { get; set; }
[JsonPropertyName("name")]
public required string Name { get; set; }