15 lines
322 B
C#
15 lines
322 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.Identity.Commands;
|
|
|
|
/// <summary>
|
|
/// 删除角色模板命令。
|
|
/// </summary>
|
|
public sealed record DeleteRoleTemplateCommand : IRequest<bool>
|
|
{
|
|
/// <summary>
|
|
/// 模板编码。
|
|
/// </summary>
|
|
public string TemplateCode { get; init; } = string.Empty;
|
|
}
|