Files
Backend-Api/CompanyManagment.App.Contracts/Employee/GetEditEmployeeInEmployeeDocumentViewModel.cs
2025-05-05 18:09:53 +03:30

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; }
}