portainer/app/docker/models/imageLayer.js

10 lines
243 B
JavaScript
Raw Normal View History

2018-10-10 08:06:23 +00:00
export function ImageLayerViewModel(order, data) {
this.Order = order;
this.Id = data.Id;
this.Created = data.Created;
this.CreatedBy = data.CreatedBy;
this.Size = data.Size;
this.Comment = data.Comment;
this.Tags = data.Tags;
}