Files
tnb.server/system/Tnb.Systems.Entitys/Dto/System/ModuleButton/ModuleButtonOutput.cs
2023-03-13 15:00:34 +08:00

16 lines
351 B
C#

using JNPF.DependencyInjection;
using JNPF.Systems.Entitys.Dto.Module;
namespace JNPF.Systems.Entitys.Dto.ModuleButton;
/// <summary>
/// 功能按钮输出.
/// </summary>
[SuppressSniffer]
public class ModuleButtonOutput : ModuleAuthorizeBase
{
/// <summary>
/// 按钮编码.
/// </summary>
public string enCode { get; set; }
}