CNCEC_SUBQHSE_WUHUAN/SGGL/WebAPI/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs

11 lines
227 B
C#
Raw Normal View History

2021-04-30 10:28:37 +08:00
using System;
namespace WebAPI.Areas.HelpPage.ModelDescriptions
{
public class ParameterAnnotation
{
public Attribute AnnotationAttribute { get; set; }
public string Documentation { get; set; }
}
}