Files
Backend-Api/CompanyManagment.App.Contracts/Employee/EmployeeSearchModel.cs
2024-07-05 21:36:15 +03:30

26 lines
904 B
C#

namespace CompanyManagment.App.Contracts.Employee;
public class EmployeeSearchModel
{
public long Id { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string NationalCode { get; set; }
public string EmployeeFullName { get; set; }
public string IdNumber { get; set; }
public string Gender { get; set; }
public string MaritalStatus { get; set; }
public string LevelOfEducation { get; set; }
public bool IsActive { get; private set; }
public string IsActiveString { get; set; }
public string InsuranceCode { get; set; }
public string WorkshopName { get; set; }
public long WorkshopId { get; set; }
public long EmployerId { get; set; }
public string EmployeeName { get; set; }
public string EmployerLName { get; set; }
public string State { get; set; }
public string City { get; set; }
}