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

8 lines
221 B
TypeScript
Raw Normal View History

2022-08-07 12:41:30 -07:00
import { ObjectWithId } from './object-with-id'
import { CommentUser } from './user-type'
export interface PaperlessDocumentComment extends ObjectWithId {
created?: Date
comment?: string
user?: CommentUser
}