export class Room { public ID: string; public url: string constructor(ID: string, url: string) { this.ID = ID; this.url = url; } }