slackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangouts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
445 B
20 lines
445 B
/*! |
|
* Ext JS Library |
|
* Copyright(c) 2006-2014 Sencha Inc. |
|
* licensing@sencha.com |
|
* http://www.sencha.com/license |
|
*/ |
|
|
|
/** |
|
* @class Ext.ux.desktop.ShortcutModel |
|
* @extends Ext.data.Model |
|
* This model defines the minimal set of fields for desktop shortcuts. |
|
*/ |
|
Ext.define('Ext.ux.desktop.ShortcutModel', { |
|
extend: 'Ext.data.Model', |
|
fields: [ |
|
{ name: 'name' }, |
|
{ name: 'iconCls' }, |
|
{ name: 'module' } |
|
] |
|
});
|
|
|