DD.WellWorkover.Cloud/AsbCloudApp/Data/ClusterStatDto.cs
2021-07-21 17:23:57 +05:00

14 lines
271 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
{
public class ClusterStatDto: ClusterDto
{
public IEnumerable<WellStatDto> WellsStat { get; set; }
}
}