using System.Collections; using System.Collections.Generic; namespace AsbCloudApp.Data.AutogeneratedDailyReport; /// /// DTO авто-сгенерированного суточного отчёта /// public class AutoGeneratedDailyReportDto : AutoGeneratedDailyReportInfoDto { /// /// Блок заголовка /// public HeadBlockDto Head { get; set; } = null!; /// /// Блок подсистем /// public IEnumerable Subsystems { get; set; } = null!; /// /// Блок ограничивающих параметров /// public IEnumerable LimitingParameters { get; set; } = null!; /// /// Баланс времени /// public IEnumerable TimeBalance { get; set; } = null!; }