paperless-ngx/src-ui/src/app/data/paperless-document-note.ts
2023-03-18 13:59:17 -07:00

8 lines
179 B
TypeScript

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