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