duheng
2024-03-28 6c93aedfeeb66023f9506083517aee1a4e18e24d
WebApi/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs
对比新文件
@@ -0,0 +1,12 @@
using System;
using System.Reflection;
namespace IStation.WebApi.Areas.HelpPage.ModelDescriptions
{
    public interface IModelDocumentationProvider
    {
        string GetDocumentation(MemberInfo member);
        string GetDocumentation(Type type);
    }
}