Command.cs 251 B

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