mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 08:55:43 +03:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
import { readOnly } from '@ember/object/computed';
|
|
import Model from 'ember-data/model';
|
|
import attr from 'ember-data/attr';
|
|
|
|
export default Model.extend({
|
|
name: readOnly('id'),
|
|
hash: attr('string'),
|
|
description: attr('string'),
|
|
});
|