mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-09 00:05:21 +01:00
12 lines
181 B
TypeScript
12 lines
181 B
TypeScript
|
|
import { ObjectWithId } from './object-with-id'
|
||
|
|
|
||
|
|
export interface PaperlessTask extends ObjectWithId {
|
||
|
|
acknowledged: boolean
|
||
|
|
|
||
|
|
task_id: string
|
||
|
|
|
||
|
|
name: string
|
||
|
|
|
||
|
|
created: Date
|
||
|
|
}
|