15 lines
339 B
JavaScript
15 lines
339 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
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;
|
|
}
|