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

36 lines
734 B
C#

namespace CompanyManagment.App.Contracts.Employer;
public class EmployerSearchModel
{
public long Id { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string FullName { get; set; }
public string Gender { get; set; }
public string Nationalcode { get; set; }
public string IdNumber { get; set; }
public string RegisterId { get; set; }
public string NationalId { get; set; }
public string EmployerLName { get; set; }
public string IsLegal { get; set; }
public long ContractingPartyID { get; set; }
public string ContactingPartyName { get; set; }
public bool IsActive { get; set; }
public string Address { get; set; }
}