ZHJA_HJGL/HJGL_ZH/WebAPI/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs

11 lines
227 B
C#
Raw Normal View History

2024-05-08 17:17:11 +08:00
using System;
namespace WebAPI.Areas.HelpPage.ModelDescriptions
{
public class ParameterAnnotation
{
public Attribute AnnotationAttribute { get; set; }
public string Documentation { get; set; }
}
}