tangxu
2024-03-09 ebe1b29ddb5ad27698487cd830b42a042ff28c3a
1
2
3
4
5
6
7
8
9
10
11
namespace IStation.WebApi.Areas.HelpPage.ModelDescriptions
{
    public class EnumValueDescription
    {
        public string Documentation { get; set; }
 
        public string Name { get; set; }
 
        public string Value { get; set; }
    }
}