mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
8 lines
207 B
JavaScript
8 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;
|
|
}
|