1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 08:19:40 +02:00

refactor(image-details): place imageLayer model under models/docker

This commit is contained in:
Anthony Lapenna 2017-07-08 09:22:39 +02:00
parent 317303fc43
commit b3f4c6f751

View file

@ -0,0 +1,8 @@
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;
}