12 lines
260 B
C#
12 lines
260 B
C#
7 years ago
|
using System;
|
||
|
using System.Reflection;
|
||
|
|
||
|
namespace MoqStudy.WebApp.Areas.HelpPage.ModelDescriptions
|
||
|
{
|
||
|
public interface IModelDocumentationProvider
|
||
|
{
|
||
|
string GetDocumentation(MemberInfo member);
|
||
|
|
||
|
string GetDocumentation(Type type);
|
||
|
}
|
||
|
}
|