using HrynCo.NotificationService.DAL.Abstract.Templates; using MediatR; using HrynCo.NotificationService.Services.Core; namespace HrynCo.NotificationService.Services.EmailTemplates.Create; public sealed record CreateEmailTemplateCommand( string ServiceName, string Key, string LanguageCode, string Subject, string HtmlBody, string TextBody, IReadOnlyList Variables ) : IRequest>;