mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-18 22:14:22 -06:00
Refactor frontend data models
This commit is contained in:
8
src-ui/src/app/data/custom-field-instance.ts
Normal file
8
src-ui/src/app/data/custom-field-instance.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { ObjectWithId } from './object-with-id'
|
||||
|
||||
export interface CustomFieldInstance extends ObjectWithId {
|
||||
document: number // Document
|
||||
field: number // CustomField
|
||||
created: Date
|
||||
value?: any
|
||||
}
|
||||
Reference in New Issue
Block a user