| 1234567 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.DonationRemote.UpdateState;
- public sealed record Command(
- int ChannelID, int MemberID, bool IsPaused, bool IsAccepting, bool IsAudioOnly, bool IsVideoOnly
- ) : ICommand;
|