forked from ddrilling/AsbCloudServer
30 lines
724 B
C#
30 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AsbCloudApp.Data.User;
|
|
|
|
namespace AsbCloudApp.Data.WellReport;
|
|
|
|
//TODO: комментарии
|
|
public class WellReportDto
|
|
{
|
|
public WellDto Well { get; set; }
|
|
|
|
public DateTimeOffset? DateFrom { get; set; }
|
|
|
|
public DateTimeOffset? DateTo { get; set; }
|
|
|
|
public PlanFactDto<double?> Days { get; set; } = null!;
|
|
|
|
public PlanFactDto<double?> WellBoreDepth { get; set; }
|
|
|
|
public PlanFactDto<double?> VerticalDepth { get; set; }
|
|
|
|
public double WithoutNtpDays { get; set; }
|
|
|
|
public IEnumerable<ContactDto> Constacts { get; set; }
|
|
|
|
public IEnumerable<SectionReportDto> SectionReports { get; set; }
|
|
|
|
public IEnumerable<DrillerReportDto> DrillerReports { get; set; }
|
|
}
|