Source: events/recorddeletedevent.js

define('application/events/recorddeletedevent', [
    'antie/events/event'
], function (
    Event
) {
    'use strict';

    var TYPE = 'recorddeleted';

    return Event.extend({

        /**
         * Initialises the event.
         *
         * @param {string} target - The target. episode or series.
         * @param {string} id - The id of the series or episode.
         */
        init: function init (target, id) {
            init.base.call(this, TYPE);

            this.target = target;
            this.id = id;
        }
    });

});