feat: add filtering by ServiceName and Key in email templates query and UI
This commit is contained in:
+2
-1
@@ -4,4 +4,5 @@ using HrynCo.NotificationService.Services.Core;
|
||||
|
||||
namespace HrynCo.NotificationService.Services.EmailTemplates.GetAll;
|
||||
|
||||
public sealed record GetAllEmailTemplatesQuery : IRequest<ServiceResult<IReadOnlyList<EmailTemplate>>>;
|
||||
public sealed record GetAllEmailTemplatesQuery(string? ServiceName = null, string? Key = null)
|
||||
: IRequest<ServiceResult<IReadOnlyList<EmailTemplate>>>;
|
||||
|
||||
Reference in New Issue
Block a user