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

21 lines
532 B
C#
Raw Permalink Normal View History

using AsbCloudApp.Data.Subsystems;
using System.Collections.Generic;
2024-09-02 09:43:21 +05:00
using System.Linq;
namespace AsbCloudApp.Data.WellReport;
2024-09-02 09:43:21 +05:00
/// <summary>
/// Показатели бурильщиков
/// </summary>
public class DrillerReportDto
{
2024-09-02 09:43:21 +05:00
/// <summary>
/// Расписание
/// </summary>
public ScheduleDto Shedule { get; set; } = null!;
2024-09-02 09:43:21 +05:00
/// <summary>
/// Наработка подсистем
/// </summary>
public IEnumerable<SubsystemStatDto> SubsystemsStat { get; set; } = Enumerable.Empty<SubsystemStatDto>();
}