/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { User } from './Common'; export interface Comment { created: string; updated: string; id: number; actor: User; role: number; comment: string; commentOutput: string; objectId: number; canEdit: boolean; canDelete: boolean; } //# sourceMappingURL=Comment.d.ts.map