Command.cs 263 B

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