| 12345678910111213141516171819202122232425262728 |
- using Domain.Entities.Members.ValueObject;
- using Application.Abstractions.Messaging;
- namespace Application.Features.Member.List.Update;
- public sealed record Command(
- int ID,
- int? MemberGradeID,
- string Email,
- string? Name,
- string? Password,
- string? FirstName,
- string? LastName,
- string? Intro,
- string? Summary,
- string? Phone,
- DateOnly? Birthday,
- Gender? Gender,
- string? ThumbUrl,
- bool IsThumbRemove,
- string? IconUrl,
- bool IsIconRemove,
- bool IsEmailVerified,
- bool IsAuthCertified,
- bool IsDenied,
- bool IsAdmin,
- bool IsWithdraw
- ) : ICommand;
|