DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/TelemetryOperationDetector.cs

13 lines
310 B
C#
Raw Normal View History

using AsbCloudDb.Model;
2021-07-21 15:29:19 +05:00
using System;
namespace AsbCloudInfrastructure.Services
{
2021-07-27 13:32:00 +05:00
public class TelemetryOperationDetector
{
public int Order { get; set; }
public WellOperationCategory Operation { get; set; }
public Func<TelemetryAnalysis, bool> Detect { get; set; }
}
}