Basf_TCC7/HJGL/WebApi/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs

11 lines
227 B
C#
Raw Normal View History

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