9 lines
347 B
C#
9 lines
347 B
C#
using HrynCo.NotificationService.DAL.Abstract.Templates;
|
|
using MediatR;
|
|
using HrynCo.NotificationService.Services.Core;
|
|
|
|
namespace HrynCo.NotificationService.Services.EmailTemplates.GetAll;
|
|
|
|
public sealed record GetAllEmailTemplatesQuery(string? ServiceName = null, string? Key = null)
|
|
: IRequest<ServiceResult<IReadOnlyList<EmailTemplate>>>;
|