remove vpn gateway class

This commit is contained in:
/dev/fd0 2025-05-28 03:59:19 +05:30
parent 3cc97d11f3
commit f29dcad7bb

View file

@ -1,38 +0,0 @@
package com.sparrowwallet.sparrow.joinstr;
import java.io.Serializable;
public class VpnGateway implements Serializable {
private String host;
private String location;
private String ipAddress;
private int port;
private String protocol;
public VpnGateway() {}
public VpnGateway(String host, String location, String ipAddress, int port, String protocol) {
this.host = host;
this.location = location;
this.ipAddress = ipAddress;
this.port = port;
this.protocol = protocol;
}
public String getHost() { return host; };
public void setHost(String host) { this.host = host; };
public String getLocation() { return location; };
public void setLocation(String location) { this.location = location; };
public String getIpAddress() { return ipAddress; };
public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; };
public int getPort() { return port; };
public void setPort(int port) { this.port = port; };
public String getProtocol() { return protocol; };
public void setProtocol(String protocol) { this.protocol = protocol; };
}