2017-01-06 10:02:36 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
2017-04-02 04:11:35 -04:00
|
|
|
namespace securecall.Areas.HelpPage.ModelDescriptions
|
2017-01-06 10:02:36 -05:00
|
|
|
{
|
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|