DD.WellWorkover.Cloud/AsbCloudApp/Data/WellReport/WellReportDto.cs
2024-08-23 16:43:09 +05:00

19 lines
426 B
C#

using System.Collections.Generic;
using AsbCloudApp.Data.User;
namespace AsbCloudApp.Data.WellReport;
public class WellReportDto
{
public WellDto Well { get; set; }
public DrillingInfoDto DrillingInfo { get; set; }
public IEnumerable<ContactDto> Constacts { get; set; }
/// <summary>
/// Режим работы
/// </summary>
public IEnumerable<PlanFactDto<OperatingModeItemDto>> OperatingMode { get; set; }
}