mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-10 06:55:17 +00:00
dbd7d66ff6
Moved web part to a subdirectory
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);
|
|
}
|
|
} |