github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/models/namespace.js (about) 1 import { readOnly } from '@ember/object/computed'; 2 import Model from '@ember-data/model'; 3 import { attr } from '@ember-data/model'; 4 5 export default class Namespace extends Model { 6 @readOnly('id') name; 7 @attr('string') hash; 8 @attr('string') description; 9 }