This commit is contained in:
M66B 2016-02-07 19:24:26 +01:00
parent 741da619e1
commit eacdb900b9
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package eu.faircode.netguard;
public class Allowed {
public String daddr;
public int dport;
public Allowed() {
this.daddr = "test";
this.dport = 80;
}
public Allowed(String daddr, int dport) {
this.daddr = daddr;
this.dport = dport;
}
}