Response.cs 404 B

123456789101112
  1. namespace Application.Features.Api.DonationRemote.GetState;
  2. public sealed record Response(
  3. bool IsPaused, bool IsAccepting, bool IsAudioOnly, bool IsVideoOnly,
  4. IReadOnlyList<AlertQueueItem> Queue
  5. );
  6. public sealed record AlertQueueItem(
  7. int AlertID, int DonationID, string Status,
  8. int SponsorMemberID, string SendName, int Amount,
  9. string? Message, bool IsTest, DateTime CreatedAt
  10. );