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 ProcessMapReportParamsDto PressureDrop { get; set; } = null!; /// /// Нагрузка, т /// public ProcessMapReportParamsDto Load { get; set; } = null!; /// /// Момент на ВСП, кНхМ /// public ProcessMapReportParamsDto TopDriveTorque { get; set; } = null!; /// /// Ограничение скорости, м/ч /// public ProcessMapReportParamsDto SpeedL​imit { get; set; } = null!; /// /// Процент использования системы АПД, % /// public double PercentageADFSystemUsage { get; set; } /// /// Фактическая механическая скорость, м/ч /// public double ActualMechanicalSpeed { get; set; } /// /// Проходка, м /// public double? SectionPenetration { get; set; } } #nullable disable }