mirror of https://github.com/portainer/portainer
19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
/**
|
|||
* KubernetesNamespace Model
|
|||
*/
|
|||
const _KubernetesNamespace = Object.freeze({
|
|||
Id: '',
|
|||
Name: '',
|
|||
CreationDate: '',
|
|||
Status: '',
|
|||
Yaml: '',
|
|||
ResourcePoolName: '',
|
|||
ResourcePoolOwner: '',
|
|||
});
|
|||
|
|||
export class KubernetesNamespace {
|
|||
constructor() {
|
|||
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesNamespace)));
|
|||
}
|
|||
}
|