北鸣对接T+畅捷通,看板API
yl
2024-03-15 72fb3e7707c38e113eeab778565e4da209f04a3d
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Reflection;
 
namespace VueWebApi.Areas.HelpPage.ModelDescriptions
{
    public interface IModelDocumentationProvider
    {
        string GetDocumentation(MemberInfo member);
 
        string GetDocumentation(Type type);
    }
}