using MediatR; using TakeoutSaaS.Application.App.Stores.Dto; namespace TakeoutSaaS.Application.App.Stores.Queries; /// /// 获取门店自提配置查询。 /// public sealed record GetStorePickupSettingQuery : IRequest { /// /// 门店 ID。 /// public long StoreId { get; init; } }