Files
OnDoc/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
2024-10-01 15:26:52 +02:00

11 lines
229 B
C#

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