forked from ddrilling/AsbCloudServer
14 lines
398 B
C#
14 lines
398 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class StatWellDto //: WellDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Caption { get; set; }
|
|
public IEnumerable<StatSectionDto> Sections { get; set; }
|
|
public PlanFactBase<StatOperationsDto> Total { get; set; }
|
|
public IEnumerable<CompanyDto> Companies { get; set; }
|
|
}
|
|
}
|