mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
import DS from 'ember-data';
|
|
var Notification = DS.Model.extend({
|
|
dismissible: DS.attr('boolean'),
|
|
location: DS.attr('string'),
|
|
status: DS.attr('string'),
|
|
type: DS.attr('string'),
|
|
message: DS.attr('string')
|
|
});
|
|
|
|
export default Notification;
|