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