You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
464 B
21 lines
464 B
3 months ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Kean.Domain.Basic.Events
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 设置角色菜单权限成功时触发的事件
|
||
|
/// </summary>
|
||
|
public class SetMenuPermissionSuccessEvent : IEvent
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色 ID
|
||
|
/// </summary>
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 权限
|
||
|
/// </summary>
|
||
|
public IEnumerable<int> Permission { get; set; }
|
||
|
}
|
||
|
}
|