ccdb-web/app/models/study-location.js
2017-11-10 11:18:33 -07:00

15 lines
398 B
JavaScript

import DS from 'ember-data';
const { Model, attr, belongsTo } = DS;
export default Model.extend({
name: attr('string'),
code: attr('string'),
studyLocationType: attr('string'),
treatmentType: attr('string'),
collectingLocation: attr('string'),
description: attr('string'),
sortOrder: attr('number'),
site: belongsTo('site'),
});