Files
xinjiang/SGGL/WebAPI/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
T

11 lines
227 B
C#
Raw Normal View History

2025-12-10 15:58:02 +08:00
using System;
namespace WebAPI.Areas.HelpPage.ModelDescriptions
{
public class ParameterAnnotation
{
public Attribute AnnotationAttribute { get; set; }
public string Documentation { get; set; }
}
}