Files
OnDoc/API_NetFramework/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
Stefan Hutter ea8d48ac9e Update 20240719
2024-07-19 17:03:49 +02:00

11 lines
237 B
C#

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