using System; using System.Collections.Generic; using System.Collections.ObjectModel; namespace Service.MeterProcessState.Areas.HelpPage.ModelDescriptions { public class ParameterDescription { public ParameterDescription() { Annotations = new Collection(); } public Collection Annotations { get; private set; } public String Documentation { get; set; } public String Name { get; set; } public ModelDescription TypeDescription { get; set; } } }