From eacdb900b941cfef017d18608e6bf56831423ede Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 7 Feb 2016 19:24:26 +0100 Subject: [PATCH] New file --- .../main/java/eu/faircode/netguard/Allowed.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/src/main/java/eu/faircode/netguard/Allowed.java 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; + } +}