This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
vikunja-frontend/src/modelTypes/ILabelTask.ts
Dominik Pschenitschni 7d4ba6249e
feat: add modelTypes
2022-09-05 17:57:21 +02:00

7 lines
No EOL
138 B
TypeScript

import type {IAbstract} from './IAbstract'
export interface ILabelTask extends IAbstract {
id: number
taskId: number
labelId: number
}