Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
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;
}