12 lines
373 B
C#
12 lines
373 B
C#
namespace CarCenterContracts.SearchModels
|
|
{
|
|
public class EmployeeSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? EmployeeFIO { get; set; }
|
|
public string? Specialization { get; set; }
|
|
public int? ManagerId { get; set; }
|
|
public DateTime? DateFrom { get; set; }
|
|
public DateTime? DateTo { get; set; }
|
|
}
|
|
} |