2021-08-09 15:41:42 +05:00
|
|
|
|
using System.Collections.Generic;
|
2021-07-21 17:23:57 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
2021-08-09 15:41:42 +05:00
|
|
|
|
public class ClusterStatDto : ClusterDto
|
2021-07-21 17:23:57 +05:00
|
|
|
|
{
|
|
|
|
|
public IEnumerable<WellStatDto> WellsStat { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|