Skip to content
Snippets Groups Projects
revision.js 257 B
Newer Older
import BaseEntity from './baseentity';
import attr from 'ember-data/attr';

const Model = BaseEntity.extend({
    technology: attr('string'),
    sourceId: attr('string'),
    targetId: attr('string'),
    workload: attr('number')
});

export default Model;