forked from ddrilling/AsbCloudServer
16 lines
395 B
C#
16 lines
395 B
C#
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)
|
|
} |