using HrynCo.NotificationService.DAL.Abstract.Providers; namespace HrynCo.NotificationService.Api.Controllers.EmailChannels; public sealed record CreateEmailChannelRequest( string ServiceName, int Priority, EmailChannelType ChannelType, EmailChannelSettings Settings, int? DailyLimit, int? MonthlyLimit, int WarnThresholdPercent, bool IsActive );