Files
LeafWeb/Core/Charter/CurveData.cs
T

11 lines
233 B
C#

using System.Collections.Generic;
namespace LeafWeb.Core.Charter
{
public class CurveData
{
public string CurveId { get; set; }
public IList<CurveParamSet> ParamSets { get; set; } = new List<CurveParamSet>();
}
}