Files
SGGL_SGY/SUBQHSE/WebAPI/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
T
2025-05-08 14:26:36 +08:00

11 lines
227 B
C#

using System;
namespace WebAPI.Areas.HelpPage.ModelDescriptions
{
public class ParameterAnnotation
{
public Attribute AnnotationAttribute { get; set; }
public string Documentation { get; set; }
}
}