Files
xinjiang/SGGL/WebAPI/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs
T
xiaju 6619f1e004 1、系统菜单调整;
2、系统看板UI调整;
3、事故事件功能
4、其他
2025-12-10 15:58:02 +08:00

21 lines
537 B
C#

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