mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-23 00:00:02 +01:00
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
import DS from 'ember-data';
|
|
|
|
export default DS.Model.extend({
|
|
name: DS.attr('string'),
|
|
type: DS.attr('string'),
|
|
values: DS.attr(),
|
|
timestamp: DS.attr('date'),
|
|
visible: DS.attr('boolean', { defaultValue: false }),
|
|
source: DS.attr('string'),
|
|
entity: DS.belongsTo('entity'),
|
|
category: DS.belongsTo('category')
|
|
});
|