vikunja-frontend/src/modelTypes/IUserShareBase.ts

11 lines
244 B
TypeScript
Raw Normal View History

2022-08-04 18:57:43 +00:00
import type {IAbstract} from './IAbstract'
import type {IUser} from './IUser'
import type {Right} from '@/constants/rights'
export interface IUserShareBase extends IAbstract {
userId: IUser['id']
right: Right
created: Date
updated: Date
}