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