forked from ddrilling/AsbCloudServer
21 lines
532 B
C#
21 lines
532 B
C#
using AsbCloudApp.Data.Subsystems;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace AsbCloudApp.Data.WellReport;
|
|
|
|
/// <summary>
|
|
/// Показатели бурильщиков
|
|
/// </summary>
|
|
public class DrillerReportDto
|
|
{
|
|
/// <summary>
|
|
/// Расписание
|
|
/// </summary>
|
|
public ScheduleDto Shedule { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Наработка подсистем
|
|
/// </summary>
|
|
public IEnumerable<SubsystemStatDto> SubsystemsStat { get; set; } = Enumerable.Empty<SubsystemStatDto>();
|
|
} |