20 lines
846 B
C#
20 lines
846 B
C#
using AccountManagement.Application.Contracts.Media;
|
|
|
|
namespace CompanyManagment.App.Contracts.Employee;
|
|
|
|
public class GetEditEmployeeInEmployeeDocumentViewModel
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public string FName { get; set; } = string.Empty;
|
|
public string LName { get; set; } = string.Empty;
|
|
public string NationalCode { get; set; } = string.Empty;
|
|
public string IdNumber { get; set; } = string.Empty;
|
|
public string FatherName { get; set; } = string.Empty;
|
|
public string BirthDate { get; set; } = string.Empty;
|
|
public string MaritalStatus { get; set; } = string.Empty;
|
|
public string MilitaryService { get; set; } = string.Empty;
|
|
public string Nationality { get; set; } = string.Empty;
|
|
public string Gender { get; set; } = string.Empty;
|
|
public bool IsAuthorized { get; set; }
|
|
public MediaViewModel Media { get; set; }
|
|
} |