SeatSelection page
This commit is contained in:
14
software/src/data/models/ordering/selectedSeatModel.ts
Normal file
14
software/src/data/models/ordering/selectedSeatModel.ts
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user