2022-04-22 17:17:38 +05:00
|
|
|
|
using System;
|
|
|
|
|
|
2023-12-04 11:11:25 +05:00
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations;
|
2023-04-18 16:22:53 +05:00
|
|
|
|
|
2023-12-04 11:11:25 +05:00
|
|
|
|
public class DetectableTelemetry
|
|
|
|
|
{
|
|
|
|
|
public DateTimeOffset DateTime { get; set; }
|
|
|
|
|
public int Mode { get; set; }
|
2024-02-20 15:01:13 +05:00
|
|
|
|
public int? IdUser { get; set; }
|
2023-12-04 11:11:25 +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; }
|
2024-03-01 09:32:02 +05:00
|
|
|
|
public float AxialLoad { get; set; }
|
|
|
|
|
}
|