BrainWare-test/Web/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs

11 lines
224 B
C#
Raw Normal View History

2020-05-05 19:14:17 +00:00
using System;
namespace Web.Areas.HelpPage.ModelDescriptions
{
public class ParameterAnnotation
{
public Attribute AnnotationAttribute { get; set; }
public string Documentation { get; set; }
}
}