duheng
2024-04-22 a549072a040749f7c732c83d2d0f138614ac08e5
WebApi/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs
对比新文件
@@ -0,0 +1,15 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace IStation.WebApi.Areas.HelpPage.ModelDescriptions
{
    public class EnumTypeModelDescription : ModelDescription
    {
        public EnumTypeModelDescription()
        {
            Values = new Collection<EnumValueDescription>();
        }
        public Collection<EnumValueDescription> Values { get; private set; }
    }
}