update vor token

This commit is contained in:
Stefan Hutter
2024-10-01 15:26:52 +02:00
parent bbace0411f
commit 4c4d27bf48
2069 changed files with 493200 additions and 150 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Reflection;
namespace OnDocWeb.Areas.HelpPage.ModelDescriptions
{
public interface IModelDocumentationProvider
{
string GetDocumentation(MemberInfo member);
string GetDocumentation(Type type);
}
}