mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 06:25:01 +00:00
11 lines
242 B
C#
11 lines
242 B
C#
|
using System;
|
||
|
|
||
|
namespace pnp.api.contosoorders.Areas.HelpPage.ModelDescriptions
|
||
|
{
|
||
|
public class ParameterAnnotation
|
||
|
{
|
||
|
public Attribute AnnotationAttribute { get; set; }
|
||
|
|
||
|
public string Documentation { get; set; }
|
||
|
}
|
||
|
}
|