using LiveCharts; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using 垂直剖面动态观测系统.Common; namespace 垂直剖面动态观测系统.Model { public class Para_Model : NotifyBase { private List _dateTime = new List(); public List DateTime { get { return _dateTime; } set { _dateTime = value; this.DoNotify(); } } private List _para = new List(); public List Para { get { return _para; } set { _para = value; this.DoNotify(); } } private ChartValues _para_LC = new ChartValues(); public ChartValues Para_LC { get { return _para_LC; } set { _para_LC = value; this.DoNotify(); } } //开始时间 private DateTime _startTime = System.DateTime.Now; public DateTime StartTime { get { return _startTime; } set { _startTime = value; this.DoNotify(); } } //结束时间 private DateTime _endTime = System.DateTime.Now; public DateTime EndTime { get { return _endTime; } set { _endTime = value; this.DoNotify(); } } //参数名称 private string _paraName = "湿度/%"; public string ParaName { get { return _paraName; } set { _paraName = value; this.DoNotify(); this.DoNotify(); } } } }