8 lines
310 B
C#
8 lines
310 B
C#
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);
|