20 lines
397 B
C#
20 lines
397 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.App.Stores.Commands;
|
|
|
|
/// <summary>
|
|
/// 删除桌台区域命令。
|
|
/// </summary>
|
|
public sealed record DeleteStoreTableAreaCommand : IRequest<bool>
|
|
{
|
|
/// <summary>
|
|
/// 门店 ID。
|
|
/// </summary>
|
|
public long StoreId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 区域 ID。
|
|
/// </summary>
|
|
public long AreaId { get; init; }
|
|
}
|