11 lines
233 B
C#
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>();
|
|
}
|
|
} |