Files
OnDoc/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs
2024-10-01 15:26:52 +02:00

21 lines
539 B
C#

using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace OnDocWeb.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; }
}
}