2023-04-10 15:36:59 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
import { readOnly } from '@ember/object/computed';
|
2021-02-17 21:01:44 +00:00
|
|
|
import Model from '@ember-data/model';
|
|
|
|
import { attr } from '@ember-data/model';
|
2017-10-07 01:27:36 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class Namespace extends Model {
|
|
|
|
@readOnly('id') name;
|
|
|
|
@attr('string') hash;
|
|
|
|
@attr('string') description;
|
|
|
|
}
|