mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -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
|
|
}
|