DD.WellWorkover.Cloud/AsbCloudApp/Data/StatWellDto.cs
2021-08-25 15:17:24 +05:00

15 lines
443 B
C#

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class StatWellDto //: WellDto
{
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; }
}
}