CNCEC_SUBQHSE_WUHUAN/SGGL/WebAPI/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs

12 lines
251 B
C#
Raw Normal View History

2021-04-30 10:28:37 +08:00
using System;
using System.Reflection;
namespace WebAPI.Areas.HelpPage.ModelDescriptions
{
public interface IModelDocumentationProvider
{
string GetDocumentation(MemberInfo member);
string GetDocumentation(Type type);
}
}