forked from ddrilling/AsbCloudServer
12 lines
298 B
C#
12 lines
298 B
C#
|
using AsbCloudDb.Model;
|
|||
|
|
|||
|
namespace AsbCloudInfrastructure.Services.DetectOperations.Detectors
|
|||
|
{
|
|||
|
class OperationDetectorResult
|
|||
|
{
|
|||
|
public int TelemetryBegin { get; set; }
|
|||
|
public int TelemetryEnd { get; set; }
|
|||
|
public DetectedOperation Operation { get; set; }
|
|||
|
}
|
|||
|
}
|