Files
OnDoc/API_NetFramework - Kopie (2)/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs
Stefan Hutter 00eae8a837 Update 20250204
2025-02-04 22:36:20 +01:00

12 lines
261 B
C#

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