mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
|
export function LocationViewModel(data) {
|
||
|
this.Id = data.id;
|
||
|
this.SubscriptionId = data.subscriptionId;
|
||
|
this.DisplayName = data.displayName;
|
||
|
this.Name = data.name;
|
||
|
}
|