docs: 标记自提档期完成
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using MediatR;
|
||||
|
||||
namespace TakeoutSaaS.Application.App.Stores.Commands;
|
||||
|
||||
/// <summary>
|
||||
/// 删除自提档期命令。
|
||||
/// </summary>
|
||||
public sealed record DeleteStorePickupSlotCommand : IRequest<bool>
|
||||
{
|
||||
/// <summary>
|
||||
/// 档期 ID。
|
||||
/// </summary>
|
||||
public long SlotId { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 门店 ID。
|
||||
/// </summary>
|
||||
public long StoreId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user