mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-07-30 18:27:45 -05:00
added paperless ui
This commit is contained in:
42
src-ui/src/app/data/paperless-document.ts
Normal file
42
src-ui/src/app/data/paperless-document.ts
Normal 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
|
||||
|
||||
}
|
Reference in New Issue
Block a user