Files
OnDoc/API_NetFramework/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs
Stefan Hutter ea8d48ac9e Update 20240719
2024-07-19 17:03:49 +02:00

21 lines
547 B
C#

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