forked from ddrilling/AsbCloudServer
19 lines
399 B
C#
19 lines
399 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|