DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/DetectOperations/DetectableTelemetry.cs
2023-04-13 11:15:45 +05:00

19 lines
533 B
C#

using System;
namespace AsbCloudInfrastructure.Services.DetectOperations
{
#nullable enable
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; }
}
#nullable disable
}