EchoTex_Payroll/HRM.UI/Controllers/MobileAPI/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs

12 lines
256 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System;
using System.Reflection;
namespace HRMobileAPI.Areas.HelpPage.ModelDescriptions
{
public interface IModelDocumentationProvider
{
string GetDocumentation(MemberInfo member);
string GetDocumentation(Type type);
}
}