9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
import { RegistryTypes } from './registryTypes';
|
|
|
|
export function DockerHubViewModel() {
|
|
this.Id = 0;
|
|
this.Type = RegistryTypes.ANONYMOUS;
|
|
this.Name = 'Docker Hub (anonymous)';
|
|
this.URL = 'docker.io';
|
|
}
|