21 lines
549 B
Puppet
21 lines
549 B
Puppet
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace $rootnamespace$.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; }
|
|
}
|
|
} |