namespace CMSMicroservice.Application.UserCQ.Commands.CreateNewUser; public record CreateNewUserCommand : IRequest { //نام public string? FirstName { get; init; } //نام خانوادگی public string? LastName { get; init; } //شماره موبایل public string Mobile { get; init; } //کد ملی public string? NationalCode { get; init; } //آدرس آواتار public string? AvatarPath { get; init; } //شناسه والد public long? ParentId { get; init; } }