mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-17 03:56:31 +01:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
|
|
import { ObjectWithId } from './object-with-id'
|
||
|
|
|
||
|
|
export interface PaperlessDocumentNote extends ObjectWithId {
|
||
|
|
created?: Date
|
||
|
|
note?: string
|
||
|
|
user?: number // PaperlessUser
|
||
|
|
}
|