mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-12 01:26:47 +01:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
|
|
import { ObjectWithId } from './object-with-id'
|
||
|
|
import { CommentUser } from './user-type'
|
||
|
|
|
||
|
|
export interface PaperlessDocumentComment extends ObjectWithId {
|
||
|
|
created?: Date
|
||
|
|
comment?: string
|
||
|
|
user?: CommentUser
|
||
|
|
}
|