13 lines
361 B
C#
13 lines
361 B
C#
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; }
|
|
}
|
|
}
|