DD.WellWorkover.Cloud/AsbCloudApp/Data/ClusterStatDto.cs

14 lines
271 B
C#
Raw Normal View History

2021-07-21 17:23:57 +05:00
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; }
}
}