using HrynCo.NotificationService.DAL.Abstract.Providers; using MediatR; using HrynCo.NotificationService.Services.Core; using Unit = HrynCo.NotificationService.Services.Core.Unit; namespace HrynCo.NotificationService.Services.EmailChannels.Update; public sealed record UpdateEmailChannelCommand( Guid Id, int Priority, EmailChannelSettings Settings, int? DailyLimit, int? MonthlyLimit, int WarnThresholdPercent, bool IsActive ) : IRequest>;