Files
OnDoc/API_NetFramework/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
2024-07-18 14:22:38 +02:00

11 lines
242 B
C#

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