* Revert "fix(sidebar): show docker sidebar when needed (#3852)" This reverts commit59da17dde4. * Revert "refactor(azure): remove Azure ACI endpoint support (#3803)" This reverts commit493de20540.
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;
|
|
}
|