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

19 lines
426 B
C#
Raw Normal View History

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