Files
OnDoc/API_NetFramework - Kopie/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs
2024-10-01 22:41:25 +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; }
}
}