ilink-world/model/Network.js

19 lines
271 B
JavaScript
Raw Normal View History

2019-06-16 13:09:54 +00:00
export default class Network{
id:number
name:string
country_id:number
}
Network.schema={
name:'Network',
primaryKey: 'id',
properties:{
id:'int',
name:'string',
country_id:'int',
}
}