frontend/src/modelTypes/ILabelTask.ts

7 lines
138 B
TypeScript
Raw Normal View History

2022-08-04 18:57:43 +00:00
import type {IAbstract} from './IAbstract'
export interface ILabelTask extends IAbstract {
id: number
taskId: number
labelId: number
}