mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-obrand.git
synced 2025-02-12 05:49:17 +00:00
21 lines
358 B
JavaScript
21 lines
358 B
JavaScript
|
import DS from 'ember-data';
|
||
|
|
||
|
const { attr } = DS;
|
||
|
|
||
|
export default DS.Model.extend({
|
||
|
uid: attr(),
|
||
|
cid: attr(),
|
||
|
company_name: attr('string'),
|
||
|
address1: attr(),
|
||
|
address2: attr(),
|
||
|
address3: attr(),
|
||
|
town: attr(),
|
||
|
county: attr(),
|
||
|
postcode: attr(),
|
||
|
country: attr(),
|
||
|
pcontact: attr(),
|
||
|
ocontact: attr(),
|
||
|
mobile: attr(),
|
||
|
email: attr()
|
||
|
});
|