using System; 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 int IdState { get; set; } public string State { get; set; } public DateTime LastTelemetryDate { get; set; } public IEnumerable Sections { get; set; } public PlanFactBase Total { get; set; } public IEnumerable Companies { get; set; } } }