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

10 lines
190 B
C#
Raw Normal View History

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