11 lines
232 B
C#
11 lines
232 B
C#
using System;
|
|
|
|
namespace HRMobileAPI.Areas.HelpPage.ModelDescriptions
|
|
{
|
|
public class ParameterAnnotation
|
|
{
|
|
public Attribute AnnotationAttribute { get; set; }
|
|
|
|
public string Documentation { get; set; }
|
|
}
|
|
} |