mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 22:44:59 +00:00
12 lines
266 B
C#
12 lines
266 B
C#
using System;
|
|
using System.Reflection;
|
|
|
|
namespace pnp.api.contosoorders.Areas.HelpPage.ModelDescriptions
|
|
{
|
|
public interface IModelDocumentationProvider
|
|
{
|
|
string GetDocumentation(MemberInfo member);
|
|
|
|
string GetDocumentation(Type type);
|
|
}
|
|
} |