2022-08-04 15:06:17 +05:00
|
|
|
|
using System.Collections.Generic;
|
2024-01-16 13:24:42 +05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2023-02-17 17:36:25 +05:00
|
|
|
|
using System.Linq;
|
2022-08-04 15:06:17 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data.DetectedOperation
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Автоматически определяемая операция
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DetectedOperationListDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Список всех операций
|
|
|
|
|
/// </summary>
|
2024-01-16 13:24:42 +05:00
|
|
|
|
[Required]
|
2023-02-17 17:36:25 +05:00
|
|
|
|
public IEnumerable<DetectedOperationDto> Operations { get; set; } = Enumerable.Empty<DetectedOperationDto>();
|
2022-08-04 15:06:17 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Статистика по бурильщикам
|
|
|
|
|
/// </summary>
|
2024-01-16 13:24:42 +05:00
|
|
|
|
[Required]
|
2023-02-17 17:36:25 +05:00
|
|
|
|
public IEnumerable<DetectedOperationDrillersStatDto> Stats { get; set; } = Enumerable.Empty<DetectedOperationDrillersStatDto>();
|
2022-08-04 15:06:17 +05:00
|
|
|
|
}
|
|
|
|
|
}
|