mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-13 01:57:08 +01:00
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
|
|
import { ObjectWithId } from './object-with-id'
|
||
|
|
|
||
|
|
export interface DocumentNote extends ObjectWithId {
|
||
|
|
created?: Date
|
||
|
|
note?: string
|
||
|
|
user?: number // User
|
||
|
|
}
|