Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
comment.ts 156 B
export class Comment {
  id: string;
  roomId: string;
  revision: string;
  subject: string;
  body: string;
  read: boolean;
  creationTimestamp: Date;
}