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

12 lines
303 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class StatWellDto : WellDto
{
public IEnumerable<StatOperationDto> Sections { get; set; }
public StatOperationDto Total { get; set; }
public IEnumerable<CompanyDto> Companies { get; set; }
}
}