91ffb82e44
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
365 B
TypeScript
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
|
|
}
|