DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/ProcessMap/ProcessTelemetrySaubStat.cs

36 lines
1.2 KiB
C#
Raw Normal View History

using System;
namespace AsbCloudInfrastructure.Services.ProcessMap
{
#nullable enable
class ProcessTelemetrySaubStat {
public int Count { get; set; }
public DateTime DateMin { get; set; }
public DateTime DateMax { get; set; }
public float WellDepthMin { get; set; }
public float WellDepthMax { get; set; }
public float Pressure { get; set; }
public float PressureSp { get; set; }
public float PressureIdle { get; set; }
public float PressureSpRotor { get; set; }
public float PressureSpSlide { get; set; }
public float PressureDeltaLimitMax { get; set; }
public float AxialLoad { get; set; }
public float AxialLoadSp { get; set; }
public float AxialLoadLimitMax { get; set; }
public float RotorTorque { get; set; }
public float RotorTorqueSp { get; set; }
public float RotorTorqueLimitMax { get; set; }
public float BlockSpeed { get; set; }
public float BlockSpeedSp { get; set; }
public float BlockSpeedSpRotor { get; set; }
public float BlockSpeedSpSlide { get; set; }
}
#nullable disable
}