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

Christoph Dornieden's avatar
Christoph Dornieden committed
export default BaseEntity.extend({
Mathis Neumann's avatar
Mathis Neumann committed
    technology: attr('string'),
    sourceId: attr('string'),
Christoph Dornieden's avatar
Christoph Dornieden committed
    targetId: attr('string'),
    workload: attr('number')
Mathis Neumann's avatar
Mathis Neumann committed
});