using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceStationContracts.BindingModels { public class ReportBindeingModel { public string EmailAddress { get; set; } = string.Empty; public DateTime DateFrom { get; set; } public DateTime DateTo { get; set; } // Список выбранных работ public List ids { get; set; } = new(); } }