Newer
Older
Correlator / PipeGallery / Model / PointInfo.cs
using PipeGallery.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PipeGallery.Model
{
    /// <summary>
    /// 曲线点信息类
    /// </summary>
    public class PointInfo : ChartBase
    {

        private double _xValue;

        public double XValue
        {
            get { return _xValue; }
            set { _xValue = value; }
        }


        private double _yValue;

        public double YValue
        {
            get { return _yValue; }
            set { _yValue = value; }
        }

    }
}