Command.cs 635 B

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