DD.WellWorkover.Cloud/AsbCloudApp/Data/StatWellDto.cs
2021-08-24 16:47:10 +05:00

12 lines
303 B
C#

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; }
}
}