Display free tickets in standing areas

This commit is contained in:
2024-10-23 13:36:21 +02:00
parent 1f0933e2a9
commit 3faa89a749
9 changed files with 81 additions and 3 deletions

View File

@@ -4,5 +4,6 @@ export class LocationModel {
address: string = ""
imageIndoor: string = ""
imageOutdoor: string = ""
capacity: number = 0
layout: number = 1
}

View File

@@ -5,5 +5,6 @@ export class SeatGroupModel {
surcharge: number = 0
standingArea: boolean = false
capacity: number = 0
occupied: number = 0
seatRows: Array<SeatRowModel>
}