using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealTimeGraphX
{
///
/// Represents a graph data point.
///
public struct GraphPoint
{
///
/// Gets or sets the x value.
///
public double X { get; set; }
///
/// Gets or sets the y value.
///
public double Y { get; set; }
///
/// Initializes a new instance of the struct.
///
/// The x.
/// The y.
public GraphPoint(double x, double y)
{
X = x;
Y = y;
}
}
}