| 1234567891011 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.MyPage.UpdateReceiveSettings;
- public sealed record Command(
- int MemberID,
- bool IsReceiveSMS,
- bool IsReceiveEmail,
- bool IsReceiveNote
- ) : ICommand<Result>;
|