using System.Collections.Generic; using AsbCloudApp.Data.Subsystems; namespace AsbCloudApp.Data.WellReport; //TODO: комментарии public class SectionReportDto { public int IdSection { get; set; } public IEnumerable SubsystemsStat { get; set; } public PlanFactDto? OperatingMode { get; set; } public DrillingBySetpointsDto? DrillingBySetpoints { get; set; } }