frontend/src/models/teamList.ts

13 lines
345 B
TypeScript
Raw Permalink Normal View History

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