Files
frontend/src/app/theater-layout/theater-layout.component.ts
2025-11-02 18:42:40 +01:00

14 lines
463 B
TypeScript

import {Component, input} from '@angular/core';
import {Sitzplatz} from '@infinimotion/model-frontend';
import {TheaterSeatState} from '../model/theater-seat-state.model';
@Component({
selector: 'app-theater-layout',
standalone: false,
templateUrl: './theater-layout.component.html',
styleUrl: './theater-layout.component.css'
})
export class TheaterLayoutComponent {
seatsPerRow = input.required<{ seat: Sitzplatz, state: TheaterSeatState }[][]>();
}