DD.WellWorkover.Cloud/AsbCloudApp/Data/StatWellDto.cs
2021-09-09 12:31:12 +05:00

15 lines
437 B
C#

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class StatWellDto : IId
{
public int Id { get; set; }
public string Caption { get; set; }
public string WellType { get; set; }
public IEnumerable<StatSectionDto> Sections { get; set; }
public PlanFactBase<StatOperationsDto> Total { get; set; }
public IEnumerable<CompanyDto> Companies { get; set; }
}
}