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<StatSectionDto> Sections { get; set; }
        public PlanFactBase<StatOperationsDto> Total { get; set; }
        public IEnumerable<CompanyDto> Companies { get; set; }
    }
}