using MediatR; using TakeoutSaaS.Application.App.Stores.Dto; namespace TakeoutSaaS.Application.App.Stores.Queries; /// /// 桌码上下文查询。 /// public sealed record GetStoreTableContextQuery : IRequest { /// /// 桌码。 /// public string TableCode { get; init; } = string.Empty; }