Command.cs 277 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.MyPage.UpdateReceiveSettings;
  4. public sealed record Command(
  5. int MemberID,
  6. bool IsReceiveSMS,
  7. bool IsReceiveEmail,
  8. bool IsReceiveNote
  9. ) : ICommand<Result>;