DD.WellWorkover.Cloud/AsbCloudApp/Data/WellReport/SectionReportDto.cs
2024-08-27 15:41:17 +05:00

16 lines
416 B
C#

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