forked from ddrilling/AsbCloudServer
10 lines
190 B
C#
10 lines
190 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class ClusterStatDto : ClusterDto
|
|
{
|
|
public IEnumerable<WellStatDto> WellsStat { get; set; }
|
|
}
|
|
}
|