paperless-ngx/src-ui/src/app/data/document-note.ts

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
}