frp/web/frpc/src/utils/status.js

14 lines
332 B
JavaScript
Raw Normal View History

2019-02-01 19:26:10 +08:00
class ProxyStatus {
constructor(status) {
this.name = status.name
this.type = status.type
this.status = status.status
this.err = status.err
this.local_addr = status.local_addr
this.plugin = status.plugin
this.remote_addr = status.remote_addr
}
}
export {ProxyStatus}