Files
OnDoc/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.9/Content/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs.pp
2024-10-01 15:26:52 +02:00

12 lines
263 B
C#

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