Files
wgenerator/src/app/modules/guest/guest-show.ts
2026-03-09 21:50:49 +01:00

10 lines
198 B
TypeScript

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