Files
MoonPro.net/MP-API/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs
T
2016-12-23 15:59:04 +01:00

21 lines
537 B
C#

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