using MediatR;
namespace TakeoutSaaS.Application.App.Stores.Commands;
///
/// 删除自提档期命令。
///
public sealed record DeleteStorePickupSlotCommand : IRequest
{
///
/// 档期 ID。
///
public long SlotId { get; init; }
///
/// 门店 ID。
///
public long StoreId { get; init; }
}