mirror of https://github.com/portainer/portainer
6 lines
134 B
JavaScript
6 lines
134 B
JavaScript
|
function AgentViewModel(data) {
|
||
|
this.IPAddress = data.IPAddress;
|
||
|
this.NodeName = data.NodeName;
|
||
|
this.NodeRole = data.NodeRole;
|
||
|
}
|