forked from ddrilling/AsbCloudServer
14 lines
333 B
C#
14 lines
333 B
C#
using AsbCloudApp.Data;
|
|
using AsbCloudDb.Model;
|
|
using System;
|
|
|
|
namespace AsbCloudInfrastructure.Services
|
|
{
|
|
public class TelemetryOperationDetector
|
|
{
|
|
public int Order { get; set; }
|
|
public OperationCategory Operation { get; set; }
|
|
public Func<TelemetryAnalysisDto, bool> Detect { get; set; }
|
|
}
|
|
}
|