Files

11 lines
228 B
C#

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