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.
|
|
|
using CellularManagement.Domain.Common;
|
|
|
|
using MediatR;
|
|
|
|
|
|
|
|
namespace CellularManagement.Application.Features.RolePermissions.Queries.GetRolePermissions;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 获取角色权限查询命令
|
|
|
|
/// </summary>
|
|
|
|
public class GetRolePermissionsQuery : IRequest<OperationResult<GetRolePermissionsResponse>>
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 角色ID
|
|
|
|
/// </summary>
|
|
|
|
public string RoleId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 是否包含权限详情
|
|
|
|
/// </summary>
|
|
|
|
public bool IncludeDetails { get; set; } = true;
|
|
|
|
}
|