11 lines
245 B
C#
11 lines
245 B
C#
|
namespace RMDataManager.Areas.HelpPage.ModelDescriptions
|
||
|
{
|
||
|
public class EnumValueDescription
|
||
|
{
|
||
|
public string Documentation { get; set; }
|
||
|
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public string Value { get; set; }
|
||
|
}
|
||
|
}
|