forked from ddrilling/AsbCloudServer
12 lines
303 B
C#
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; }
|
|||
|
}
|
|||
|
}
|