Section
This commit is contained in:
4
bookie/src/app/core/section.ts
Normal file
4
bookie/src/app/core/section.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export class Section {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
@ -1,7 +1,9 @@
|
||||
import {Section} from "./section";
|
||||
|
||||
export class Table {
|
||||
id: string;
|
||||
name: string;
|
||||
seats: number;
|
||||
section: string;
|
||||
section: Section;
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user