using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AsbCloudApp.Data.ProcessMap { #nullable enable /// /// Строки РТК /// public class ProcessMapReportRowDto { /// /// Проходка, м /// public double? DeltaDepth { get; set; } /// /// Перепад давления, атм /// public ProcessMapReportParamsDto PressureDiff { get; set; } = null!; /// /// Нагрузка, т /// public ProcessMapReportParamsDto AxialLoad { get; set; } = null!; /// /// Момент на ВСП, кНхМ /// public ProcessMapReportParamsDto TopDriveTorque { get; set; } = null!; /// /// Ограничение скорости, м/ч /// public ProcessMapReportParamsDto SpeedL​imit { get; set; } = null!; /// /// Процент использования системы АПД, % /// public double Usage { get; set; } /// /// Фактическая механическая скорость, м/ч /// public double Rop { get; set; } } #nullable disable }