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