Command.cs 299 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Member.List.Approve;
  4. public sealed record Command(
  5. int MemberID,
  6. bool IsReceiveSMS,
  7. bool IsReceiveEmail,
  8. bool IsReceiveNote,
  9. bool IsDisclosureInvest
  10. ) : ICommand<Result>;