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

export default BaseEntity.extend({
    name: attr('string')
Mathis Neumann's avatar
Mathis Neumann committed
});