18 lines
379 B
C#
18 lines
379 B
C#
namespace CompanyManagment.App.Contracts.Employee.DTO;
|
|
|
|
/// <summary>
|
|
/// سرچ مدل پرسنل
|
|
/// api
|
|
/// </summary>
|
|
public class EmployeeSearchModelDto
|
|
{
|
|
/// <summary>
|
|
/// نام پرسنل
|
|
/// </summary>
|
|
public string EmployeeFullName { get; set; }
|
|
|
|
/// <summary>
|
|
/// کد ملی
|
|
/// </summary>
|
|
public string NationalCode { get; set; }
|
|
} |