vikunja-frontend/src/modelTypes/IAttachment.ts

11 lines
238 B
TypeScript
Raw Normal View History

2022-08-04 18:57:43 +00:00
import type {IAbstract} from './IAbstract'
import type {IFile} from './IFile'
import type {IUser} from './IUser'
export interface IAttachment extends IAbstract {
id: number
taskId: number
createdBy: IUser
file: IFile
created: Date
}