import {Room} from "./Room" interface NotificationArgs { time: number; message: string; room: Room; } export class RoomNotification { time: Date message = "" room: Room constructor(data: NotificationArgs) { this.time = new Date(data.time*1000) this.message = data.message this.room = data.room } }