11 lines
209 B
C#
11 lines
209 B
C#
|
|
using Prism.Events;
|
||
|
|
|
||
|
|
namespace YY.Admin.Event;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 本地 sys_menu 结构变更后通知左侧菜单树重新加载
|
||
|
|
/// </summary>
|
||
|
|
public class MenuStructureChangedEvent : PubSubEvent<bool>
|
||
|
|
{
|
||
|
|
}
|