mirror of https://github.com/portainer/portainer
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
|
function DockerHubViewModel(data) {
|
||
|
this.Name = 'DockerHub';
|
||
|
this.URL = '';
|
||
|
this.Authentication = data.Authentication;
|
||
|
this.Username = data.Username;
|
||
|
this.Password = data.Password;
|
||
|
}
|