2022-06-30 17:37:57 +05:00
|
|
|
|
using AsbCloudDb.Model;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations.Detectors
|
|
|
|
|
{
|
2023-04-18 16:22:53 +05:00
|
|
|
|
|
2022-06-30 17:37:57 +05:00
|
|
|
|
class OperationDetectorResult
|
|
|
|
|
{
|
|
|
|
|
public int TelemetryBegin { get; set; }
|
|
|
|
|
public int TelemetryEnd { get; set; }
|
2023-04-13 11:15:45 +05:00
|
|
|
|
public DetectedOperation Operation { get; set; } = null!;
|
2022-06-30 17:37:57 +05:00
|
|
|
|
}
|
2023-04-18 16:22:53 +05:00
|
|
|
|
|
2022-06-30 17:37:57 +05:00
|
|
|
|
}
|