forked from ddrilling/AsbCloudServer
16 lines
416 B
C#
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; }
|
|
} |