using MediatR;
namespace TakeoutSaaS.Application.App.Stores.Commands;
///
/// 删除桌台区域命令。
///
public sealed record DeleteStoreTableAreaCommand : IRequest
{
///
/// 门店 ID。
///
public long StoreId { get; init; }
///
/// 区域 ID。
///
public long AreaId { get; init; }
}