// EN: Query to get tables by shop.
// VI: Query lấy danh sách bàn theo shop.
using MediatR;
namespace FnbEngine.API.Application.Queries;
///
/// EN: Query to get tables by shop.
/// VI: Query lấy danh sách bàn theo shop.
///
public record GetTablesQuery(Guid ShopId) : IRequest>;
///
/// EN: Table data transfer object.
/// VI: Data transfer object cho Table.
///
public record TableDto(
Guid Id,
Guid ShopId,
string TableNumber,
int Capacity,
string? Zone,
string Status,
int? PositionX = null,
int? PositionY = null
);