mirror of https://github.com/portainer/portainer
4 lines
108 B
JavaScript
4 lines
108 B
JavaScript
|
function RegistryRepositoryViewModel(data) {
|
||
|
this.Name = data.name;
|
||
|
this.TagsCount = data.tags.length;
|
||
|
}
|