Response.cs 253 B

12345678910111213
  1. namespace Application.Features.Api.Paper.GetMyLeaderboardRank;
  2. public sealed record Response(
  3. string Sort,
  4. string Period,
  5. bool HasRank,
  6. long Rank,
  7. long Total,
  8. int ReturnBp,
  9. int WinRateBp,
  10. int MddBp,
  11. int FillCount
  12. );