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