Command.cs 242 B

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