mirror of https://github.com/portainer/portainer
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
|
function ImageLayerViewModel(data) {
|
||
|
this.Id = data.Id;
|
||
|
this.Created = data.Created;
|
||
|
this.CreatedBy = data.CreatedBy;
|
||
|
this.Size = data.Size;
|
||
|
this.Comment = data.Comment;
|
||
|
this.Tags = data.Tags;
|
||
|
}
|