NetGuard/app/src/main/java/eu/faircode/netguard/Allowed.java

17 lines
293 B
Java
Raw Normal View History

2016-02-07 18:24:26 +00:00
package eu.faircode.netguard;
public class Allowed {
public String daddr;
public int dport;
public Allowed() {
this.daddr = null;
this.dport = 0;
2016-02-07 18:24:26 +00:00
}
public Allowed(String daddr, int dport) {
this.daddr = daddr;
this.dport = dport;
}
}