paperless-ngx/src-ui/src/app/data/paperless-task.ts

14 lines
201 B
TypeScript
Raw Normal View History

2022-05-23 01:52:46 -07:00
import { ObjectWithId } from './object-with-id'
export interface PaperlessTask extends ObjectWithId {
acknowledged: boolean
q_task_id: string
2022-05-23 01:52:46 -07:00
name: string
created: Date
2022-05-26 15:41:30 -07:00
result: string
2022-05-23 01:52:46 -07:00
}