import BaseEntity from './baseentity';
import attr from 'ember-data/attr';

export default BaseEntity.extend({    
    technology: attr('string'),
    sourceId: attr('string'),
    targetId: attr('string')
});