using HrynCo.NotificationService.DAL.Abstract.Providers; using MediatR; using HrynCo.NotificationService.Services.Core; namespace HrynCo.NotificationService.Services.EmailChannels.Create; public sealed record CreateEmailChannelCommand( string ServiceName, int Priority, EmailChannelType ChannelType, EmailChannelSettings Settings, int? DailyLimit, int? MonthlyLimit, int WarnThresholdPercent, bool IsActive ) : IRequest>;