Files
wgenerator/src/app/modules/shows/services/show.ts
2020-05-13 19:35:21 +02:00

14 lines
226 B
TypeScript

import * as firebase from 'firebase';
import Timestamp = firebase.firestore.Timestamp;
export interface Show {
id: string;
showType: string;
date: Timestamp;
owner: string;
public: boolean;
reported: boolean;
}