2022-04-22 17:17:38 +05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations
|
|
|
|
|
{
|
|
|
|
|
public class DetectableTelemetry
|
|
|
|
|
{
|
|
|
|
|
public DateTimeOffset DateTime { get; set; }
|
|
|
|
|
public int? IdUser { get; set; }
|
2022-06-30 17:37:57 +05:00
|
|
|
|
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; }
|
2022-04-22 17:17:38 +05:00
|
|
|
|
}
|
|
|
|
|
}
|