laatzen/Common/Service/MeterProcessState/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs
2022-10-19 12:58:08 +02:00

22 lines
570 B
C#

using System;
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; }
public String Documentation { get; set; }
public String Name { get; set; }
public ModelDescription TypeDescription { get; set; }
}
}