Files
OnDoc/ILMocup/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
Stefan Hutter 09bcee5a2a Update 20241112
2024-11-12 14:22:55 +01:00

11 lines
228 B
C#

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