aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/common/OrgChannelTuple.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/common/OrgChannelTuple.java')
-rw-r--r--src/main/java/common/OrgChannelTuple.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/java/common/OrgChannelTuple.java b/src/main/java/common/OrgChannelTuple.java
new file mode 100644
index 0000000..8a78dcc
--- /dev/null
+++ b/src/main/java/common/OrgChannelTuple.java
@@ -0,0 +1,37 @@
+package common;
+
+public class OrgChannelTuple {
+ private String name;
+ private long discordChannelId;
+ private String type;
+
+ public OrgChannelTuple(String type, String name, long discordChannelId) {
+ this.name = name;
+ this.type = type;
+ this.discordChannelId = discordChannelId;
+ }
+
+ public String getType() {
+ return type;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public long getDiscordChannelId() {
+ return discordChannelId;
+ }
+
+ public void setDiscordChannelId(long discordChannelId) {
+ this.discordChannelId = discordChannelId;
+ }
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage