mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-obrand.git
synced 2025-02-14 15:19:15 +00:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
|
import DS from 'ember-data';
|
||
|
|
||
|
export default DS.Model.extend({
|
||
|
cid: DS.attr('string'),
|
||
|
pid: DS.attr('string'),
|
||
|
category: DS.attr(),
|
||
|
title: DS.attr('string'),
|
||
|
content: DS.belongsTo('page-content')
|
||
|
});
|