using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CloudBuilder.Core.Application.Packs { public class PackLevelAttribute : Attribute { public PackLevelAttribute() { } public PackLevelAttribute(int level) { this.Level = level; } /// /// 获取权限名称 /// public int Level { get; set; } } }