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