DeviceManager/DeviceRepair.Api/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs

21 lines
547 B
C#
Raw Permalink Normal View History

2024-05-28 14:36:38 +00:00
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace DeviceRepair.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; }
}
}