David Hartman 31437b9492 Web api dev (#163)
* initial commit

* removed old files

* initial commit
2017-04-02 11:11:35 +03:00

12 lines
255 B
C#

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