using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace PBS.WinFrmUI.DataAnalysis
|
{
|
public class TimeChartViewModel
|
{
|
public string Time { get; set; }
|
|
public double Y { get; set; }
|
}
|
|
public class FlowPressChartViewModel
|
{
|
public string Name { get; set; }
|
|
public List<TimeChartViewModel> Datas { get; set; }
|
|
public FlowPressChartViewModel()
|
{
|
Datas = new List<TimeChartViewModel>();
|
}
|
}
|
}
|