forked from ddrilling/AsbCloudServer
18 lines
449 B
C#
18 lines
449 B
C#
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<TimeBalanceRecord>? WellOperations { get; set; }
|
|
} |