forked from ddrilling/AsbCloudServer
17 lines
504 B
C#
17 lines
504 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; }
|
|||
|
}
|
|||
|
}
|