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

20 lines
365 B
TypeScript

import type { Project } from './project'
export type TaskGroup = {
id: number
'@id'?: string
title: string
description: string | null
color: string
project: Project | null
archived: boolean
}
export type TaskGroupWrite = {
title: string
description: string | null
color: string
project: string
archived?: boolean
}