mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
10 lines
261 B
JavaScript
10 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;
|