mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
export class AgentViewModel {
|
|
constructor(data) {
|
|
this.IPAddress = data.IPAddress;
|
|
this.NodeName = data.NodeName;
|
|
this.NodeRole = data.NodeRole;
|
|
}
|
|
}
|