PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentContracts/SearchModels/EmployeeSearchModel.cs

18 lines
449 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmployeeManagmentContracts.SearchModels
{
public class EmployeeSearchModel
{
public int? Id { get; set; }
public string? NameJob { get; set; }
public DateTime? StartDateFrom { get; set; }
public DateTime? StartDateTo { get; set; }
public float? Bid { get; set; }
}
}