paperless-ngx/src-ui/src/app/data/document-note.ts
2023-12-19 22:36:35 -08:00

8 lines
161 B
TypeScript

import { ObjectWithId } from './object-with-id'
export interface DocumentNote extends ObjectWithId {
created?: Date
note?: string
user?: number // User
}