using Domain.Entities.Members.ValueObject; using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Admin.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;