Files
OnDoc/ILMocup/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs
Stefan Hutter 09bcee5a2a Update 20241112
2024-11-12 14:22:55 +01:00

21 lines
538 B
C#

using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace ILMocup.Areas.HelpPage.ModelDescriptions
{
public class ParameterDescription
{
public ParameterDescription()
{
Annotations = new Collection<ParameterAnnotation>();
}
public Collection<ParameterAnnotation> Annotations { get; private set; }
public string Documentation { get; set; }
public string Name { get; set; }
public ModelDescription TypeDescription { get; set; }
}
}