Response.cs 363 B

1234567891011121314
  1. namespace Application.Features.Api.Ranking.GetRising;
  2. public sealed record Response(IReadOnlyList<RisingEntry> Entries, DateTime? SnapshotAt);
  3. public sealed record RisingEntry(
  4. int MemberID,
  5. string MemberName,
  6. string? MemberThumb,
  7. string? ChannelName,
  8. long RecentAmount,
  9. long PreviousAmount,
  10. double GrowthRate,
  11. int DonorCount
  12. );