18 lines
450 B
C#
18 lines
450 B
C#
namespace CompanyManagment.App.Contracts.FileEmployee;
|
|
|
|
public class FileEmployeeSearchModel
|
|
{
|
|
|
|
public string FName { get; set; }
|
|
|
|
public string LName { get; set; }
|
|
|
|
|
|
public string RepresentativeFullName { get; set; }
|
|
|
|
public string FatherName { get; set; }
|
|
public string NationalCode { get; set; }
|
|
public string IdNumber { get; set; }
|
|
public string Gender { get; set; }
|
|
public string IsActive { get; set; }
|
|
} |