2019-03-02 11:25:10 +01:00
|
|
|
import TeamShareBaseModel from './teamShareBase'
|
2022-06-23 03:22:21 +02:00
|
|
|
import type NamespaceModel from './namespace'
|
2019-03-02 11:25:10 +01:00
|
|
|
|
|
|
|
export default class TeamNamespaceModel extends TeamShareBaseModel {
|
2022-06-23 03:22:21 +02:00
|
|
|
namespaceId: NamespaceModel['id']
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
defaults() {
|
2021-10-06 22:25:06 +02:00
|
|
|
return {
|
|
|
|
...super.defaults(),
|
|
|
|
namespaceId: 0,
|
|
|
|
}
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
}
|