This commit is contained in:
Amritanshu
2019-06-23 01:35:00 +05:30
parent 20801afc8a
commit 142a0f5a8a
42 changed files with 1069 additions and 234 deletions

View File

@ -0,0 +1,4 @@
export class Section {
id: string;
name: string;
}

View File

@ -1,7 +1,9 @@
import {Section} from "./section";
export class Table {
id: string;
name: string;
seats: number;
section: string;
section: Section;
isActive: boolean;
}