added paperless ui

This commit is contained in:
Jonas Winkler
2020-10-27 01:10:18 +01:00
parent e24baf5811
commit 8693bee4ac
173 changed files with 18693 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
import { PaperlessCorrespondent } from './paperless-correspondent'
import { ObjectWithId } from './object-with-id'
import { PaperlessTag } from './paperless-tag'
import { PaperlessDocumentType } from './paperless-document-type'
export class PaperlessDocument extends ObjectWithId {
correspondent?: PaperlessCorrespondent
correspondent_id?: number
document_type?: PaperlessDocumentType
document_type_id?: number
title?: string
content?: string
file_type?: string
tags?: PaperlessTag[]
tags_id?: number[]
checksum?: string
created?: Date
modified?: Date
added?: Date
file_name?: string
download_url?: string
thumbnail_url?: string
archive_serial_number?: number
}