ZHJA_HJGL/HJGL_ZH/WebAPI/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs

12 lines
251 B
C#
Raw Normal View History

2024-05-08 17:17:11 +08:00
using System;
using System.Reflection;
namespace WebAPI.Areas.HelpPage.ModelDescriptions
{
public interface IModelDocumentationProvider
{
string GetDocumentation(MemberInfo member);
string GetDocumentation(Type type);
}
}