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

12 lines
287 B
C#
Raw Normal View History

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