using AsbCloudApp.Data.Subsystems; using System.Collections.Generic; using System.Linq; namespace AsbCloudApp.Data.WellReport; /// /// Показатели бурильщиков /// public class DrillerReportDto { /// /// Расписание /// public ScheduleDto Shedule { get; set; } = null!; /// /// Наработка подсистем /// public IEnumerable SubsystemsStat { get; set; } = Enumerable.Empty(); }