Files
OnDoc/API_NetFramework - Kopie/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs
T
Stefan Hutter 6d764dccd0 update 20260522
2026-05-22 20:49:40 +02: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);
}
}