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

11 lines
232 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System;
namespace HRMobileAPI.Areas.HelpPage.ModelDescriptions
{
public class ParameterAnnotation
{
public Attribute AnnotationAttribute { get; set; }
public string Documentation { get; set; }
}
}