Command.cs 595 B

12345678910111213141516171819202122232425262728
  1. using Domain.Entities.Members.ValueObject;
  2. using MediatR;
  3. namespace Application.Features.Member.List.Update;
  4. public sealed record Command(
  5. int ID,
  6. int? MemberGradeID,
  7. string Email,
  8. string? Name,
  9. string? Password,
  10. string? FirstName,
  11. string? LastName,
  12. string? Intro,
  13. string? Summary,
  14. string? Phone,
  15. DateOnly? Birthday,
  16. Gender? Gender,
  17. string? ThumbUrl,
  18. bool IsThumbRemove,
  19. string? IconUrl,
  20. bool IsIconRemove,
  21. bool IsEmailVerified,
  22. bool IsAuthCertified,
  23. bool IsDenied,
  24. bool IsAdmin,
  25. bool IsWithdraw
  26. ) : IRequest;