Files
Lesstime/frontend/services/dto/task-status.ts
2026-03-12 17:59:45 +01:00

16 lines
254 B
TypeScript

export type TaskStatus = {
id: number
'@id'?: string
label: string
color: string
position: number
isFinal: boolean
}
export type TaskStatusWrite = {
label: string
color: string
position: number
isFinal: boolean
}