mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 22:44:59 +00:00
21 lines
545 B
C#
21 lines
545 B
C#
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace api.securecall.Areas.HelpPage.ModelDescriptions
|
|
{
|
|
public class ParameterDescription
|
|
{
|
|
public ParameterDescription()
|
|
{
|
|
Annotations = new Collection<ParameterAnnotation>();
|
|
}
|
|
|
|
public Collection<ParameterAnnotation> Annotations { get; private set; }
|
|
|
|
public string Documentation { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public ModelDescription TypeDescription { get; set; }
|
|
}
|
|
} |