DD.WellWorkover.Cloud/AsbCloudApp/Data/WellReport/WellReportDto.cs
2024-08-27 15:41:17 +05:00

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; }
}