mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-10 06:55:17 +00:00
16 lines
344 B
C#
16 lines
344 B
C#
using System;
|
|
|
|
namespace pnp.api.contosoorders.Areas.HelpPage.ModelDescriptions
|
|
{
|
|
/// <summary>
|
|
/// Describes a type model.
|
|
/// </summary>
|
|
public abstract class ModelDescription
|
|
{
|
|
public string Documentation { get; set; }
|
|
|
|
public Type ModelType { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
}
|
|
} |