forked from ddrilling/AsbCloudServer
12 lines
302 B
C#
12 lines
302 B
C#
|
using System.Collections.Generic;
|
||
|
using AsbCloudApp.Data.Subsystems;
|
||
|
|
||
|
namespace AsbCloudApp.Data;
|
||
|
|
||
|
public record DrillerDetectedOperationStatDto
|
||
|
{
|
||
|
public DrillerDto driller;
|
||
|
public IEnumerable<SubsystemStatDto> statistic;
|
||
|
public ScheduleDto schedule;
|
||
|
public IEnumerable<WellDto> well;
|
||
|
}
|