2024-08-15 15:59:47 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.BindingModels {
|
|
|
|
|
public class ReportBindeingModel {
|
2024-08-16 13:44:43 +04:00
|
|
|
|
public string EmailAddress { get; set; } = string.Empty;
|
2024-08-15 15:59:47 +04:00
|
|
|
|
public DateTime DateFrom { get; set; }
|
|
|
|
|
public DateTime DateTo { get; set; }
|
|
|
|
|
|
|
|
|
|
// Список выбранных работ
|
|
|
|
|
public List<int> ids { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|