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>
14 lines
362 B
C#
14 lines
362 B
C#
using HrynCo.NotificationService.DAL.Abstract.Templates;
|
|
|
|
namespace HrynCo.NotificationService.Web.Controllers.Api.EmailTemplates;
|
|
|
|
public sealed record CreateEmailTemplateRequest(
|
|
string ServiceName,
|
|
string Key,
|
|
string LanguageCode,
|
|
string Subject,
|
|
string HtmlBody,
|
|
string TextBody,
|
|
IReadOnlyList<EmailTemplateVariable> Variables
|
|
);
|