using System; using MediatR; using TakeoutSaaS.Application.App.Stores.Dto; namespace TakeoutSaaS.Application.App.Stores.Queries; /// /// 获取可用自提档期查询。 /// public sealed record GetAvailablePickupSlotsQuery : IRequest> { /// /// 门店 ID。 /// public long StoreId { get; init; } /// /// 目标日期(本地日期部分)。 /// public DateTime Date { get; init; } }