forked from ddrilling/AsbCloudServer
94b7dd3ef7
Stats reorganized
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; }
|
|
}
|
|
}
|