12 lines
263 B
ObjectPascal
12 lines
263 B
ObjectPascal
using System;
|
|
using System.Reflection;
|
|
|
|
namespace $rootnamespace$.Areas.HelpPage.ModelDescriptions
|
|
{
|
|
public interface IModelDocumentationProvider
|
|
{
|
|
string GetDocumentation(MemberInfo member);
|
|
|
|
string GetDocumentation(Type type);
|
|
}
|
|
} |