| 123456789101112 |
- namespace Application.Features.Api.DonationRemote.GetState;
- public sealed record Response(
- bool IsPaused, bool IsAccepting, bool IsAudioOnly, bool IsVideoOnly,
- IReadOnlyList<AlertQueueItem> Queue
- );
- public sealed record AlertQueueItem(
- int AlertID, int DonationID, string Status,
- int SponsorMemberID, string SendName, int Amount,
- string? Message, bool IsTest, DateTime CreatedAt
- );
|