xaml-sdk/ChartView3D/WPF/SurfaceProjection/PlotInfo.cs

11 строки
249 B
C#

namespace SurfaceProjection
{
public class PlotInfo
{
public string XValue { get; set; }
public string YValue { get; set; }
public double ZValue { get; set; }
public double ConstValue { get; set; }
}
}