2019-03-02 11:25:10 +01:00
|
|
|
import TeamShareBaseModel from './teamShareBase'
|
|
|
|
|
2022-08-04 20:57:43 +02:00
|
|
|
import type {ITeamList} from '@/modelTypes/ITeamList'
|
|
|
|
import type {IList} from '@/modelTypes/IList'
|
2022-07-21 00:42:36 +02:00
|
|
|
|
|
|
|
export default class TeamListModel extends TeamShareBaseModel implements ITeamList {
|
2022-08-14 12:15:45 +02:00
|
|
|
listId: IList['id'] = 0
|
2022-06-23 03:22:21 +02:00
|
|
|
|
2022-08-14 12:15:45 +02:00
|
|
|
constructor(data: Partial<ITeamList>) {
|
|
|
|
super(data)
|
|
|
|
this.assignData(data)
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
}
|