16 lines
443 B
C#
16 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeInsuranceRecord;
|
|
|
|
public class EmployeeInsuranceRecordSearchModel
|
|
{
|
|
public long id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public long WorkShopId { get; set; }
|
|
public DateTime DateOfStart { get; set; }
|
|
public DateTime DateOfEnd { get; set; }
|
|
} |