IModelDocumentationProvider.cs.pp 263 Bytes
using System;
using System.Reflection;

namespace $rootnamespace$.Areas.HelpPage.ModelDescriptions
{
    public interface IModelDocumentationProvider
    {
        string GetDocumentation(MemberInfo member);

        string GetDocumentation(Type type);
    }
}