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

10 lines
147 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;
}