DD.WellWorkover.Cloud/AsbCloudApp/Data/StatWellDto.cs
2021-08-25 11:13:56 +05:00

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