Response.cs 316 B

12345678
  1. namespace Application.Features.Api.Crew.GetSessionHistory;
  2. public sealed record Response(int Total, IReadOnlyList<SessionHistoryItem> List);
  3. public sealed record SessionHistoryItem(
  4. int ID, string Title, int TotalAmount, int TotalDonationCount,
  5. DateTime? StartedAt, DateTime? EndedAt, DateTime CreatedAt
  6. );