Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceStationContracts/SearchModels/WorkSearchModel.cs

13 lines
317 B
C#
Raw Normal View History

2024-08-10 18:43:15 +04:00

2024-04-30 02:41:35 +04:00
namespace ServiceStationContracts.SearchModels
{
public class WorkSearchModel
{
public int? Id { get; set; }
2024-08-10 18:43:15 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
public int? ExecutorId { get; set; }
public int? TaskId { get; set; }
2024-04-30 02:41:35 +04:00
}
}