mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
9 lines
283 B
JavaScript
9 lines
283 B
JavaScript
function StackViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Name = data.Name;
|
|
this.Checked = false;
|
|
if (data.ResourceControl && data.ResourceControl.Id !== 0) {
|
|
this.ResourceControl = new ResourceControlViewModel(data.ResourceControl);
|
|
}
|
|
this.External = data.External;
|
|
}
|