using MediatR; namespace TakeoutSaaS.Application.Identity.Commands; /// /// 删除角色模板命令。 /// public sealed record DeleteRoleTemplateCommand : IRequest { /// /// 模板编码。 /// public string TemplateCode { get; init; } = string.Empty; }