yl
2024-03-15 27f0636da2b4b22a16404a3dbea4b3d3d477a65e
1
2
3
4
5
6
7
8
9
10
11
namespace VueWebApi.Areas.HelpPage.ModelDescriptions
{
    public class EnumValueDescription
    {
        public string Documentation { get; set; }
 
        public string Name { get; set; }
 
        public string Value { get; set; }
    }
}