using Admin.NET.Core.Util.LowCode.Front.Model; using Furion.Extras.Admin.NET.Util.LowCode.Front.Att; using Furion.Extras.Admin.NET.Util.LowCode.Front.Interface; namespace Furion.Extras.Admin.NET.Util.LowCode.Front { /// /// 警告提示 /// [FrontType("alert")] public class Front_Alert : IFront { public string Key { get; set; } public string Label { get; set; } public string Type { get; set; } public string Model { get; set; } public Front_Alert_Options Options { get; set; } public ViewDynamic Dynamic { get { return null; } } } public class Front_Alert_Options { /// /// 类型 /// public string Type { get; set; } /// /// 辅助表述 /// public string Description { get; set; } /// /// 显示图标 /// public bool ShowIcon { get; set; } /// /// 无边框 /// public bool Banner { get; set; } /// /// 隐藏 /// public bool Hidden { get; set; } /// /// 禁用 /// public bool Disabled { get; set; } } }