paperless-ngx/src-ui/src/app/data/paperless-document-comment.ts

9 lines
224 B
TypeScript
Raw Normal View History

2022-08-07 12:41:30 -07:00
import { ObjectWithId } from './object-with-id'
2022-11-13 21:31:46 -08:00
import { PaperlessUser } from './paperless-user'
2022-08-07 12:41:30 -07:00
export interface PaperlessDocumentComment extends ObjectWithId {
created?: Date
comment?: string
2022-11-13 21:31:46 -08:00
user?: PaperlessUser
}