Files
2026-07-13 12:08:39 +08:00

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