mirror of https://github.com/portainer/portainer
7 lines
138 B
JavaScript
7 lines
138 B
JavaScript
|
function StoridgeNodeModel(name, data) {
|
||
|
this.Name = name;
|
||
|
this.IP = data.ip;
|
||
|
this.Role = data.role;
|
||
|
this.Status = data.status;
|
||
|
}
|