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

19 lines
399 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
{
/// <summary>
/// Lines container for Time Vs Depth chart
/// </summary>
public class PlanFactPredictBase<T>
{
public T Plan { get; set; }
public T Fact { get; set; }
public T Predict { get; set; }
}
}