paperless-ngx/src-ui/src/app/data/custom-field-instance.ts
2023-12-19 22:36:35 -08:00

9 lines
203 B
TypeScript

import { ObjectWithId } from './object-with-id'
export interface CustomFieldInstance extends ObjectWithId {
document: number // Document
field: number // CustomField
created: Date
value?: any
}