BrainWare-test/Web/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
2020-05-05 15:14:17 -04:00

11 lines
224 B
C#

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