From 50dbab5fe4feaf5356132ff463a71c76e4cc1a3a Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Fri, 7 Apr 2023 21:45:53 -0700 Subject: Initial Commit --- src/main/java/common/OrgChannelTuple.java | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/main/java/common/OrgChannelTuple.java (limited to 'src/main/java/common') 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; + } +} -- cgit v1.2.3