vikunja-frontend/src/models/teamNamespace.ts

13 lines
390 B
TypeScript
Raw Permalink Normal View History

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