15 lines
315 B
C#
15 lines
315 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.App.SystemParameters.Commands;
|
|
|
|
/// <summary>
|
|
/// 删除系统参数命令。
|
|
/// </summary>
|
|
public sealed record DeleteSystemParameterCommand : IRequest<bool>
|
|
{
|
|
/// <summary>
|
|
/// 参数 ID。
|
|
/// </summary>
|
|
public long ParameterId { get; init; }
|
|
}
|