Source: models/channels.js

define('application/models/channels', [
    'rofl/models/api/abstract'
], function (
    Abstract
) {
    'use strict';

    return Abstract.extend({

        /**
         * Gets the name.
         *
         * @returns {string|null} The name or null if not defined.
         */
        getName: function () {
            return this._name;
        }

    });
});