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