forked from ddrilling/AsbCloudServer
12 lines
287 B
C#
12 lines
287 B
C#
|
using AsbCloudApp.Data.Subsystems;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data.WellReport;
|
|||
|
|
|||
|
//TODO: комментарии
|
|||
|
public class DrillerReportDto
|
|||
|
{
|
|||
|
public ScheduleDto Shedule { get; set; }
|
|||
|
|
|||
|
public IEnumerable<SubsystemStatDto> SubsystemsStat { get; set; }
|
|||
|
}
|