using System;
namespace AsbCloudInfrastructure.Services.DetectOperations;
public class DetectableTelemetry
{
///
/// Дата начала
///
public DateTimeOffset DateTime { get; set; }
///
/// Режим
///
public int Mode { get; set; }
///
/// Ключ пользователя
///
public int? IdUser { get; set; }
///
/// Глубина забоя
///
public float WellDepth { get; set; }
///
/// Давление
///
public float Pressure { get; set; }
///
/// Вес на крюке
///
public float HookWeight { get; set; }
///
/// Положение талевого блока
///
public float BlockPosition { get; set; }
///
/// Глубина долота
///
public float BitDepth { get; set; }
///
/// Обороты ротора
///
public float RotorSpeed { get; set; }
///
/// Осевая нагрузка
///
public float AxialLoad { get; set; }
}