19 lines
567 B
C#
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; }
|
|
} |