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

12 lines
181 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
task_id: string
name: string
created: Date
}