13 lines
359 B
JavaScript
13 lines
359 B
JavaScript
import DS from 'ember-data';
|
|
|
|
const { Model, attr } = 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'),
|
|
});
|