15 lines
443 B
C#
15 lines
443 B
C#
|
|
namespace CMSMicroservice.Application.UserCQ.Commands.UpdateUser;
|
||
|
|
public record UpdateUserCommand : IRequest<Unit>
|
||
|
|
{
|
||
|
|
//شناسه
|
||
|
|
public long Id { get; init; }
|
||
|
|
//نام
|
||
|
|
public string? FirstName { get; init; }
|
||
|
|
//نام خانوادگی
|
||
|
|
public string? LastName { get; init; }
|
||
|
|
//کد ملی
|
||
|
|
public string? NationalCode { get; init; }
|
||
|
|
//آدرس آواتار
|
||
|
|
public string? AvatarPath { get; init; }
|
||
|
|
|
||
|
|
}
|