forked from ddrilling/AsbCloudServer
16 lines
449 B
C#
16 lines
449 B
C#
using System;
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations;
|
|
|
|
public class DetectableTelemetry
|
|
{
|
|
public DateTimeOffset DateTime { 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; }
|
|
}
|