export interface RemoteDto {
    name: string;
    url: string;
    protocol: string;
    public: boolean;
    readonly: boolean;
    password: string;
}
