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

16 lines
316 B
TypeScript
Raw Normal View History

2024-01-03 00:19:19 -08:00
import { ObjectWithId } from './object-with-id'
import { WorkflowAction } from './workflow-action'
import { WorkflowTrigger } from './workflow-trigger'
export interface Workflow extends ObjectWithId {
name: string
order: number
enabled: boolean
triggers: WorkflowTrigger[]
actions: WorkflowAction[]
}