mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 23:39:41 +02:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
|
export function ResourceGroupViewModel(data, subscriptionId) {
|
||
|
this.Id = data.id;
|
||
|
this.SubscriptionId = subscriptionId;
|
||
|
this.Name = data.name;
|
||
|
this.Location = data.location;
|
||
|
}
|