0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/client/app/models/notification.js

11 lines
207 B
JavaScript
Raw Normal View History

2015-02-12 21:22:32 -07:00
import DS from 'ember-data';
const {Model, attr} = DS;
export default Model.extend({
dismissible: attr('boolean'),
status: attr('string'),
type: attr('string'),
message: attr('string')
});