17 lines
556 B
C#
17 lines
556 B
C#
namespace CMSMicroservice.Application.UserCQ.Commands.CreateNewUser;
|
|
public record CreateNewUserCommand : IRequest<CreateNewUserResponseDto>
|
|
{
|
|
//نام
|
|
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; }
|
|
|
|
} |