22 lines
475 B
C#
Raw Normal View History

2024-04-30 23:27:38 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationContracts.BindingModels
{
public class ReportExecutorBindingModel
2024-04-30 23:27:38 +04:00
{
public string FileName { get; set; } = string.Empty;
2024-05-01 00:14:31 +04:00
public int ExecutorId { get; set; }
2024-04-30 23:27:38 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
public List<int>? Ids { get; set; }
2024-04-30 23:27:38 +04:00
}
}