WallpaperModel.js 271 B

1234567891011121314
  1. /*!
  2. * Ext JS Library 4.0
  3. * Copyright(c) 2006-2011 Sencha Inc.
  4. * licensing@sencha.com
  5. * http://www.sencha.com/license
  6. */
  7. Ext.define('MyDesktop.WallpaperModel', {
  8. extend: 'Ext.data.Model',
  9. fields: [
  10. { name: 'text' },
  11. { name: 'img' }
  12. ]
  13. });