18 lines
449 B
C#
18 lines
449 B
C#
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; }
|
|
}
|
|
}
|