1
0
Fork 0
sortable-recipes/app/models/meal.js
2019-12-22 11:47:00 -06:00

14 lines
263 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 tags;
@attr youtube;
@attr source;
}