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

11 lines
251 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class StatClusterDto : ClusterDto
{
public List<StatOperationDto> Sections { get; set; }
public List<StatOperationDto> WellsTotals { get; set; }
}
}