export interface Destination {
    Name: string;
    Host: string;
    WebIDEUsage: string;
    Authentication: string;
    ProxyType: string;
}
export interface DestinationError {
    message: string;
}
