export default class PresentationFileDiff { public updated: string[]; public added: string[]; public removed: string[]; public constructor() { this.updated = []; this.added = []; this.removed = []; } }