feat: 角色模板改为数据库管理支持前端自定义
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using MediatR;
|
||||
|
||||
namespace TakeoutSaaS.Application.Identity.Commands;
|
||||
|
||||
/// <summary>
|
||||
/// 删除角色模板命令。
|
||||
/// </summary>
|
||||
public sealed record DeleteRoleTemplateCommand : IRequest<bool>
|
||||
{
|
||||
/// <summary>
|
||||
/// 模板编码。
|
||||
/// </summary>
|
||||
public string TemplateCode { get; init; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user