mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00
9 lines
181 B
TypeScript
9 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
|
|
}
|