Files
2020-12-31 10:35:24 +01:00

11 lines
227 B
C#

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