import {IEvent} from "../../Messages/Event/IEvent"; import {BaseEvent} from "../../Messages/Event/BaseEvent"; import {GlobalEventScope} from "./GalleryEventScope"; export class CommentAddedEventScope extends BaseEvent{ constructor(public connectionId: string, public galleryId, public author: string, public comment: string){ super(); this.scopes = [new GalleryEventScope(galleryId)]; } }