forked from ddrilling/AsbCloudServer
19 lines
426 B
C#
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; }
|
|||
|
}
|