Files
Basf_TCC11/HJGL/WebApi/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
T
2024-05-08 16:27:28 +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; }
}
}