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