barker/bookie/src/app/core/table.ts

16 lines
258 B
TypeScript
Raw Normal View History

import {Section} from './section';
2019-06-22 20:05:00 +00:00
export class Table {
id: string;
name: string;
2019-06-17 07:53:00 +00:00
seats: number;
2019-06-22 20:05:00 +00:00
section: Section;
isActive: boolean;
voucherId?: string;
2019-08-10 08:51:40 +00:00
status?: string;
pax?: number;
guest?: string;
date?: string;
amount?: number;
}