Skip to content
Snippets Groups Projects
baseentity.js 226 B
Newer Older
Mathis Neumann's avatar
Mathis Neumann committed
import Model from 'ember-data/model';
import attr from 'ember-data/attr';

export default Model.extend({
    // id: attr('string') - not allowed to be listed by ember
    systemId: attr('string'),
    type: attr('string')
Mathis Neumann's avatar
Mathis Neumann committed
});