2022-10-19 10:58:08 +00:00
|
|
|
using System;
|
2021-10-01 09:09:20 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
|
|
|
|
|
namespace Service.MeterProcessState.Areas.HelpPage.ModelDescriptions
|
|
|
|
|
{
|
|
|
|
|
public class ParameterDescription
|
|
|
|
|
{
|
|
|
|
|
public ParameterDescription()
|
|
|
|
|
{
|
|
|
|
|
Annotations = new Collection<ParameterAnnotation>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Collection<ParameterAnnotation> Annotations { get; private set; }
|
|
|
|
|
|
2022-10-19 10:58:08 +00:00
|
|
|
public String Documentation { get; set; }
|
2021-10-01 09:09:20 +00:00
|
|
|
|
2022-10-19 10:58:08 +00:00
|
|
|
public String Name { get; set; }
|
2021-10-01 09:09:20 +00:00
|
|
|
|
|
|
|
|
public ModelDescription TypeDescription { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|