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.
20 lines
438 B
20 lines
438 B
3 years ago
|
using System;
|
||
|
|
||
|
namespace Sanhe.Abp.MenuManagement
|
||
|
{
|
||
|
public class UpdateMenuGrantDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 菜单Id
|
||
|
/// </summary>
|
||
|
public Guid Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 权限key
|
||
|
/// </summary>
|
||
|
public string PermissionKey { get; set; }
|
||
|
/// <summary>
|
||
|
/// 是否分配
|
||
|
/// </summary>
|
||
|
public bool IsGranted { get; set; }
|
||
|
}
|
||
|
}
|