Files
portainer/app/docker/models/imageLayer.js
T
2018-10-10 11:06:23 +03:00

10 lines
243 B
JavaScript

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;
}