20 lines
713 B
C#
20 lines
713 B
C#
namespace CompanyManagment.App.Contracts.AuthorizedPerson;
|
|
|
|
public class AuthorizedPersonViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string NationalCode { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string FatherName { get; set; }
|
|
public string BirthDate { get; set; }
|
|
public string Gender { get; set; }
|
|
public string DeathStatus { get; set; }
|
|
public string ShenasnameSeri { get; set; }
|
|
public string ShenasnameSerial { get; set; }
|
|
public string ShenasnamehNumber { get; set; }
|
|
public bool IsVerified { get; set; }
|
|
public string VerificationDate { get; set; }
|
|
public string CreationDate { get; set; }
|
|
}
|