using System.Collections.Generic; namespace AsbCloudDb.Model.DailyReports.Blocks.TimeBalance; public class TimeBalanceBlock : ItemInfo { public int IdSection { get; set; } public string? SectionName { get; set; } public double? WellDepthPlan { get; set; } public double WellDepthFact { get; set; } public double? WellOperationSlipsTimeCount { get; set; } public IEnumerable? WellOperations { get; set; } }