DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/DetectOperations/Detectors/OperationDetectorResult.cs
Степанов Дмитрий a3938a2dff Рефакторинг DTO
2024-02-20 11:15:05 +03:00

13 lines
309 B
C#

using AsbCloudApp.Data.DetectedOperation;
namespace AsbCloudInfrastructure.Services.DetectOperations.Detectors
{
public class OperationDetectorResult
{
public int TelemetryBegin { get; set; }
public int TelemetryEnd { get; set; }
public DetectedOperationDto Operation { get; set; } = null!;
}
}