DD.WellWorkover.Cloud/AsbCloudApp/Data/StatWellDto.cs

15 lines
443 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
2021-08-25 11:13:56 +05:00
public class StatWellDto //: WellDto
{
2021-08-25 11:13:56 +05:00
public int Id { get; set; }
public string Caption { get; set; }
2021-08-25 15:17:24 +05:00
public string WellType { get; set; }
2021-08-25 11:13:56 +05:00
public IEnumerable<StatSectionDto> Sections { get; set; }
public PlanFactBase<StatOperationsDto> Total { get; set; }
public IEnumerable<CompanyDto> Companies { get; set; }
}
}