Add admin NotificationsController for binding, groups, history, and send

This commit is contained in:
Chris Chen
2026-06-23 19:20:28 -07:00
parent 4c22cfaf19
commit 39432ac588
2 changed files with 102 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace ROLAC.API.DTOs.Notifications;
public sealed record UpdateGroupRequest(string? Name, bool IsActive);
public sealed record SendLineRequest(string Body, int[]? MemberIds, int[]? GroupIds);
public sealed record SendEmailRequest(string Subject, string HtmlBody, int[]? MemberIds, string[]? Addresses);