mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { readOnly } from '@ember/object/computed';
|
|
import Model from '@ember-data/model';
|
|
import { attr } from '@ember-data/model';
|
|
|
|
export default class Namespace extends Model {
|
|
@readOnly('id') name;
|
|
@attr('string') hash;
|
|
@attr('string') description;
|
|
}
|