Skip to content

Commit

Permalink
add claim count and claim percentage to club stats
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Sep 14, 2024
1 parent b42c256 commit 6351758
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fluXis.Shared/Components/Clubs/APIClubStatistics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
}

0 comments on commit 6351758

Please sign in to comment.