DD.WellWorkover.Cloud/AsbCloudApp/Data/WellReport/SectionReportDto.cs
Степанов Дмитрий cf40bb85a1 Комментарии в DTOs
2024-09-02 09:43:21 +05:00

30 lines
759 B
C#

using System.Collections.Generic;
using AsbCloudApp.Data.Subsystems;
namespace AsbCloudApp.Data.WellReport;
/// <summary>
/// Показатели по секции
/// </summary>
public class SectionReportDto
{
/// <summary>
/// Идентификатор секции
/// </summary>
public int IdSection { get; set; }
/// <summary>
/// Наработка подсистем
/// </summary>
public IEnumerable<SubsystemStatDto> SubsystemsStat { get; set; } = [];
/// <summary>
/// Режимы бурения
/// </summary>
public PlanFactDto<OperatingModeDto> OperatingMode { get; set; } = null!;
/// <summary>
/// Бурение по уставкам
/// </summary>
public DrillingBySetpointsDto? DrillingBySetpoints { get; set; }
}