17 lines
325 B
TypeScript
17 lines
325 B
TypeScript
|
import type {IAbstract} from './IAbstract'
|
||
|
import type {IUser} from './IUser'
|
||
|
import type {ITask} from './ITask'
|
||
|
|
||
|
export interface IBucket extends IAbstract {
|
||
|
id: number
|
||
|
title: string
|
||
|
listId: number
|
||
|
limit: number
|
||
|
tasks: ITask[]
|
||
|
isDoneBucket: boolean
|
||
|
position: number
|
||
|
|
||
|
createdBy: IUser
|
||
|
created: Date
|
||
|
updated: Date
|
||
|
}
|