Command.cs 243 B

12345678910
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Crew.ToggleWidgetActive;
  4. public sealed record Command(
  5. int ID,
  6. int ChannelID,
  7. bool IsActive
  8. ) : ICommand<Result<Response>>;