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