2023-03-28 16:13:50 +04:00
|
|
|
|
namespace BeautySaloonContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class EmployeeSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
public string? Surname { get; set; }
|
|
|
|
|
public string? Patronymic { get; set; }
|
|
|
|
|
public string? Phone { get; set; }
|
|
|
|
|
public int? PositionId { get; set; }
|
2023-05-06 16:30:44 +04:00
|
|
|
|
public string? PositionName { get; set; }
|
2023-03-28 16:13:50 +04:00
|
|
|
|
}
|
|
|
|
|
}
|