cec8f42ece
- Prepares Controllers/ for both Api/ and Admin/ groupings - Namespaces updated accordingly Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15 lines
385 B
C#
15 lines
385 B
C#
using HrynCo.NotificationService.DAL.Abstract.Providers;
|
|
|
|
namespace HrynCo.NotificationService.Web.Controllers.Api.EmailChannels;
|
|
|
|
public sealed record CreateEmailChannelRequest(
|
|
string ServiceName,
|
|
int Priority,
|
|
EmailChannelType ChannelType,
|
|
EmailChannelSettings Settings,
|
|
int? DailyLimit,
|
|
int? MonthlyLimit,
|
|
int WarnThresholdPercent,
|
|
bool IsActive
|
|
);
|