mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
6 lines
167 B
JavaScript
6 lines
167 B
JavaScript
function LocationViewModel(data) {
|
|
this.Id = data.id;
|
|
this.SubscriptionId = data.subscriptionId;
|
|
this.DisplayName = data.displayName;
|
|
this.Name = data.name;
|
|
}
|