DD.WellWorkover.Cloud/AsbCloudApp/Data/WellReport/DrillingInfoDto.cs

16 lines
395 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AsbCloudApp.Data.WellReport;
public class DrillingInfoDto
{
public DatesRangeDto Dates { get; set; } = null!;
public PlanFactDto<double> Days { get; set; } = null!;
public PlanFactDto<double> WellBoreDepth { get; set; }
public PlanFactDto<double?> VerticalDepth { get; set; }
//TODO: Срок строит. без НПВ факт (DE8)
}