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
  • Sv.js
  • root's avatar
    save · 293ffec7
    293ffec7
    root authored 2015-07-30 23:23:35 +0300
Sv.js 630 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 27 28 29 30 31
Ext.define('App.model.Sv', {
    extend : 'Ext.data.Model',
    
    fields : [{
    				name:'id',
    				type:'int'
    		  },
              {
            	  name:'process',
            	  type:'string'
              },
              {
            	  name:'autostart',
            	  type:'boolean'
              },
              
              {
            	  name:'isrun',
            	  type:'boolean'
              },
              
              {
            	  name:'starttime',
            	  type:'int'
              },
              {
            	  name:'stoptime',
            	  type:'int'
              } ]
});