using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AsbCloudApp.Data.ProcessMap { /// /// Параметры РТК /// public class ProcessMapReportParamsDto { /// /// Уставка план /// public double? SetpointPlan { get; set; } /// /// Уставка факт /// public double? SetpointFact { get; set; } /// /// Факт /// public double? Fact { get; set; } /// /// Ограничение /// public double? Limit { get; set; } /// /// Процент бурения по уставке, % /// public double? PercDrillingBySetpoint { get; set; } } }