qin
2025-03-14 185565a8eb30c0546746aad52aac0926d395a76d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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>();
        }
    }
}