github.com/hernad/nomad@v1.6.112/ui/app/models/namespace.js (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 import { readOnly } from '@ember/object/computed'; 7 import Model from '@ember-data/model'; 8 import { attr } from '@ember-data/model'; 9 10 export default class Namespace extends Model { 11 @readOnly('id') name; 12 @attr('string') hash; 13 @attr('string') description; 14 }