elwayman02/ember-data-echonest

View on GitHub
addon/models/echonest-video.js

Summary

Maintainability
A
1 hr
Test Coverage
import DS from 'ember-data';

const { Model, attr } = DS;

export default Model.extend({
    dateFound: attr('date'),
    imageUrl: attr('string'),
    site: attr('string'),
    title: attr('string'),
    url: attr('string')
});