forked from ddrilling/AsbCloudServer
13 lines
312 B
C#
13 lines
312 B
C#
using AsbCloudDb.Model;
|
|
using System;
|
|
|
|
namespace AsbCloudInfrastructure.Services.Analysis
|
|
{
|
|
class TelemetryOperationDetector
|
|
{
|
|
public int Order { get; set; }
|
|
public WellOperationCategory Operation { get; set; }
|
|
public Func<TelemetryAnalysis, bool> Detect { get; set; }
|
|
}
|
|
}
|