11 lines
234 B
C#
11 lines
234 B
C#
using System;
|
|
|
|
namespace RMDataManager.Areas.HelpPage.ModelDescriptions
|
|
{
|
|
public class ParameterAnnotation
|
|
{
|
|
public Attribute AnnotationAttribute { get; set; }
|
|
|
|
public string Documentation { get; set; }
|
|
}
|
|
} |