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

19 lines
567 B
C#

namespace CompanyManagment.App.Contracts.FileEmployer;
public class FileEmployerSearchModel
{
public string FName { get; set; }
public string LName { get; set; }
public string RepresentativeFullName { get; set; }
public string NationalId { get; set; }
public string RegisterId { get; set; }
public string LegalName { get; set; }
public string NationalCode { get; set; }
public string IdNumber { get; set; }
public string Gender { get; set; }
public string IsActive { get; set; }
public string IsLegal { get; set; }
}