Atomize model classes

This commit is contained in:
2024-10-11 17:42:21 +02:00
parent 8e7c9a949d
commit 8f0de99634
59 changed files with 432 additions and 356 deletions

View File

@@ -1,5 +1,5 @@
export class SeatModel {
id: number
seatNr: string
id: number = -1
seatNr: string = ""
state: number = 0
}