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