mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 06:19:41 +02:00
10 lines
283 B
JavaScript
10 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;
|
||
|
}
|