2024-07-04 11:02:45 +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
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
namespace AsbCloudApp.Data.DetectedOperation;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Автоматически определяемая операция
|
|
|
|
/// </summary>
|
|
|
|
public class DetectedOperationListDto
|
2022-08-04 15:06:17 +05:00
|
|
|
{
|
|
|
|
/// <summary>
|
2024-08-19 10:01:07 +05:00
|
|
|
/// Список всех операций
|
2022-08-04 15:06:17 +05:00
|
|
|
/// </summary>
|
2024-08-19 10:01:07 +05:00
|
|
|
[Required]
|
|
|
|
public IEnumerable<DetectedOperationWithDrillerDto> Operations { get; set; } = Enumerable.Empty<DetectedOperationWithDrillerDto>();
|
2022-08-04 15:06:17 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Статистика по бурильщикам
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
public IEnumerable<DetectedOperationDrillersStatDto> Stats { get; set; } = Enumerable.Empty<DetectedOperationDrillersStatDto>();
|
2022-08-04 15:06:17 +05:00
|
|
|
}
|