using System;using System.Reflection; namespace ICSSoft.WebAPI.Areas.HelpPage.ModelDescriptions{ public interface IModelDocumentationProvider { string GetDocumentation(MemberInfo member); string GetDocumentation(Type type); }}
using System;
using System.Reflection;
namespace ICSSoft.WebAPI.Areas.HelpPage.ModelDescriptions
{
public interface IModelDocumentationProvider
string GetDocumentation(MemberInfo member);
string GetDocumentation(Type type);
}