using System; using System.Collections.Generic; namespace AsbCloudApp.Data { public class WellStatDto : WellDto { public DateTime? PlanStart { get; set; } public DateTime? PlanEnd { get; set; } public DateTime? FactStart { get; set; } public DateTime? FactEnd { get; set; } public double? UnProductiveDays { get; set; } public double? RateOfPenetrationPlan { get; set; } public double? RateOfPenetrationFact { get; set; } public double? RouteSpeedPlan { get; set; } public double? RouteSpeedFact { get; set; } public IEnumerable Sections { get; set; } public IEnumerable Companies { get; set; } } }