1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-16 00:00:03 +01:00
VILLASweb/app/models/category.js
2015-10-08 16:04:06 +02:00

7 lines
165 B
JavaScript

import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr('string'),
properties: DS.hasMany('property'),
entity: DS.belongsTo('entity')
});