mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
9 lines
242 B
JavaScript
9 lines
242 B
JavaScript
function ImageViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Tag = data.Tag;
|
|
this.Repository = data.Repository;
|
|
this.Created = data.Created;
|
|
this.Checked = false;
|
|
this.RepoTags = data.RepoTags;
|
|
this.VirtualSize = data.VirtualSize;
|
|
}
|