1
0
Fork 0
sortable-recipes/ember-ui/app/models/meal.js
Ava Gaiety Wroten 84a1e7d972 Backend
2019-12-24 16:52:05 -06:00

16 lines
341 B
JavaScript

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;
}