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
|
|
}
|