DD.WellWorkover.Cloud/AsbCloudApp/Data/DetectedOperation/DetectedOperationWithDrillerDto.cs

18 lines
494 B
C#
Raw Normal View History

2024-08-19 10:01:07 +05:00
namespace AsbCloudApp.Data.DetectedOperation;
/// <summary>
/// Автоматически определяемая операция
/// </summary>
public class DetectedOperationWithDrillerDto : DetectedOperationDto
2024-02-12 09:14:02 +05:00
{
/// <summary>
2024-08-19 10:01:07 +05:00
/// Бурильщик
2024-02-12 09:14:02 +05:00
/// </summary>
2024-08-19 10:01:07 +05:00
public DrillerDto? Driller { get; set; }
2024-02-12 09:14:02 +05:00
2024-08-19 10:01:07 +05:00
/// <summary>
/// Целевые/нормативные показатели
/// </summary>
public OperationValueDto? OperationValue { get; set; }
2024-02-12 09:14:02 +05:00
}