/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */ (function (module) { 'use strict'; var kn = require('./Knoin/Knoin.js'), AbstractSystemDropDownViewModel = require('./AbstractSystemDropDownViewModel.js') ; /** * @constructor * @extends AbstractSystemDropDownViewModel */ function SettingsSystemDropDownViewModel() { AbstractSystemDropDownViewModel.call(this); kn.constructorEnd(this); } kn.extendAsViewModel('SettingsSystemDropDownViewModel', SettingsSystemDropDownViewModel, AbstractSystemDropDownViewModel); module.exports = SettingsSystemDropDownViewModel; }(module));