Files
wgenerator/src/app/modules/guest/guest-show.ts
benjamin f2986dd420
Some checks failed
Angular Build / build (push) Has been cancelled
fix guest component
2026-03-20 19:14:59 +01:00

11 lines
230 B
TypeScript

import {Song} from '../songs/services/song';
import {Timestamp} from '@angular/fire/firestore';
export interface GuestShow {
id: string;
showType: string;
date: Timestamp;
updatedAt?: Timestamp | Date;
songs: Song[];
}