import DS from 'ember-data'; const { Model, attr } = DS; export default class MealModel extends Model { @attr name; @attr dateModified; @attr category; @attr area; @attr mealThumb; @attr instructions; @attr ingredients; @attr tags; @attr youtube; @attr source; @attr('number', { defaultValue: Infinity }) listOrder; }