using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
namespace AsbCloudApp.Data.DetectedOperation
{
///
/// Автоматически определяемая операция
///
public class DetectedOperationListDto
{
///
/// Список всех операций
///
[Required]
public IEnumerable Operations { get; set; } = Enumerable.Empty();
///
/// Статистика по бурильщикам
///
[Required]
public IEnumerable Stats { get; set; } = Enumerable.Empty();
}
}