cms/app-client/app/models/theme.js
author Chloe Laisne <chloe.laisne@gmail.com>
Mon, 30 May 2016 23:58:34 +0200
changeset 176 d1baf7ccecc8
permissions -rw-r--r--
Add `thematiques` components

import Model from 'ember-data/model';
import attr from 'ember-data/attr';

export default Model.extend({

    label: attr('string'),
    count: attr('number')

});