Skip to content
  • This project
    • Loading...
  • Sign in

Дмитрий Корытько / hware

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hardwareconfig
  • ..
  • model
  • Proxy.js
  • root's avatar
    save · 9fa4f8b8
    9fa4f8b8 Browse Files
    root authored 2015-07-16 15:05:47 +0400
Proxy.js 463 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
Ext.define('App.model.Proxy', {
    extend : 'Ext.data.Model',
    
    fields : [{
					  name:'id',
					  type:'int'
			  },{
	    		  name:'protocol',
	    		  type:'string'
	    	  },{
	    		  name:'host',
	    		  type:'string'
    		  },{
    			  name:'port',
    			  type:'int'
    		  },{
    			  name:'login',
    			  type:'string'
    		  },{
    			  name:'pass'
    		  },{
    			  name:'enabled'
    		  },{
    			  name:'auth'
    		  }]
});