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

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; }
}