Advertisement
dereksir

Untitled

Apr 29th, 2024
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1.  static class ProxyInfo {
  2.         String host;
  3.         int port;
  4.  
  5.         ProxyInfo(String host, int port) {
  6.             this.host = host;
  7.             this.port = port;
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement