paperless-ngx/src-ui/src/app/data/paperless-document-comment.ts
2022-08-23 19:20:08 -07:00

9 lines
196 B
TypeScript

import { ObjectWithId } from './object-with-id'
import { User } from './user'
export interface PaperlessDocumentComment extends ObjectWithId {
created?: Date
comment?: string
user?: User
}