Response.cs 231 B

1234567891011
  1. namespace Application.Features.Api.Ranking.GetMyRank;
  2. public sealed record Response(
  3. int? Rank,
  4. int? PreviousRank,
  5. int? RankChange,
  6. long Score,
  7. long MoneyAmount,
  8. int DonorCount,
  9. DateTime? SnapshotAt
  10. );