CloudBuilder/CloudBuilder.Core/Application/Packs/PackLevelAttribute.cs
owenchen 1c0c83af5f ow
2026-05-12 10:09:31 +08:00

28 lines
503 B
C#

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;
}
/// <summary>
/// 获取权限名称
/// </summary>
public int Level { get; set; }
}
}