vikunja-frontend/src/modelTypes/ITaskAssignee.ts

9 lines
223 B
TypeScript
Raw Permalink Normal View History

2022-08-04 18:57:43 +00:00
import type {IAbstract} from './IAbstract'
import type {ITask} from './ITask'
import type {IUser} from './IUser'
export interface ITaskAssignee extends IAbstract {
created: Date
userId: IUser['id']
taskId: ITask['id']
}