Command.cs 359 B

12345678910111213141516
  1. using MediatR;
  2. namespace Application.Features.Director.User.Update
  3. {
  4. public sealed record Command(
  5. string ID,
  6. string? FullName,
  7. string? Email,
  8. string? PhoneNumber,
  9. string? NewPassword,
  10. string? ConfirmPassword,
  11. bool IsDeleted,
  12. bool EmailConfirmed,
  13. bool LockoutEnd
  14. ) : IRequest;
  15. }