SeatSelection page

This commit is contained in:
2024-10-04 20:15:16 +02:00
parent 519fa210e9
commit a676ce3d86
22 changed files with 316 additions and 76 deletions

View File

@@ -0,0 +1,14 @@
import { SeatModel } from "../locations/seatModel";
import { SeatRowModel } from "../locations/seatRowModel";
export class SelectedSeatModel {
seat: SeatModel
seatRow: number
seatGroupName: string
constructor(seat: SeatModel, seatRow: number, seatGroupName: string) {
this.seat = seat
this.seatRow = seatRow
this.seatGroupName = seatGroupName
}
}