forked from ddrilling/AsbCloudServer
11 lines
251 B
C#
11 lines
251 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class StatClusterDto : ClusterDto
|
|||
|
{
|
|||
|
public List<StatOperationDto> Sections { get; set; }
|
|||
|
public List<StatOperationDto> WellsTotals { get; set; }
|
|||
|
}
|
|||
|
}
|