From 6351758dfa31d76f1deb6fa982ab54d5eaa4a1fb Mon Sep 17 00:00:00 2001 From: flustix Date: Sat, 14 Sep 2024 13:46:43 +0200 Subject: [PATCH] add claim count and claim percentage to club stats --- fluXis.Shared/Components/Clubs/APIClubStatistics.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fluXis.Shared/Components/Clubs/APIClubStatistics.cs b/fluXis.Shared/Components/Clubs/APIClubStatistics.cs index 5c44e2fb..c232b4f7 100644 --- a/fluXis.Shared/Components/Clubs/APIClubStatistics.cs +++ b/fluXis.Shared/Components/Clubs/APIClubStatistics.cs @@ -6,4 +6,10 @@ public class APIClubStatistics { [JsonProperty("ovr")] public double OverallRating { get; set; } + + [JsonProperty("claims")] + public long TotalClaims { get; set; } + + [JsonProperty("claim-percent")] + public double ClaimPercentage { get; set; } }