using System;

namespace AsbCloudInfrastructure.Services.DetectOperations;

public class DetectableTelemetry
{
    public DateTimeOffset DateTime { get; set; }
    public int? IdUser { get; set; }
    public int Mode { 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; }
}