7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
|
import type {IAbstract} from './IAbstract'
|
||
|
|
||
|
export interface ILabelTask extends IAbstract {
|
||
|
id: number
|
||
|
taskId: number
|
||
|
labelId: number
|
||
|
}
|