2021-10-01 09:09:20 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace Service.MeterProcessState.Areas.HelpPage.ModelDescriptions
|
|
|
|
|
{
|
|
|
|
|
public interface IModelDocumentationProvider
|
|
|
|
|
{
|
2022-10-19 10:58:08 +00:00
|
|
|
String GetDocumentation(MemberInfo member);
|
2021-10-01 09:09:20 +00:00
|
|
|
|
2022-10-19 10:58:08 +00:00
|
|
|
String GetDocumentation(Type type);
|
2021-10-01 09:09:20 +00:00
|
|
|
}
|
|
|
|
|
}
|