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.
19 lines
507 B
19 lines
507 B
3 months ago
|
using MediatR;
|
||
|
using CellularManagement.Application.Common;
|
||
3 months ago
|
using CellularManagement.Domain.Common;
|
||
3 months ago
|
|
||
|
namespace CellularManagement.Application.Features.Permissions.Commands.CreatePermission;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建权限命令
|
||
|
/// </summary>
|
||
|
public sealed record CreatePermissionCommand(
|
||
|
/// <summary>
|
||
|
/// 权限名称
|
||
|
/// </summary>
|
||
|
string Name,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 权限描述
|
||
|
/// </summary>
|
||
|
string? Description) : IRequest<OperationResult<CreatePermissionResponse>>;
|