using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Crew.ToggleWidgetActive; public sealed record Command( int ID, int ChannelID, bool IsActive ) : ICommand<Result<Response>>;