diff --git a/app/src/main/java/eu/faircode/netguard/Allowed.java b/app/src/main/java/eu/faircode/netguard/Allowed.java new file mode 100644 index 00000000..0e3d37aa --- /dev/null +++ b/app/src/main/java/eu/faircode/netguard/Allowed.java @@ -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; + } +}