EnumValueDescription.cs 240 Bytes
Newer Older
Koolapong Kongpitak's avatar
Koolapong Kongpitak committed
1
2
3
4
5
6
7
8
9
10
11
namespace SYS_Core.Areas.HelpPage.ModelDescriptions
{
    public class EnumValueDescription
    {
        public string Documentation { get; set; }

        public string Name { get; set; }

        public string Value { get; set; }
    }
}