diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2023-04-07 21:45:53 -0700 |
|---|---|---|
| committer | Pinapelz <donaldshan1@outlook.com> | 2023-04-07 21:45:53 -0700 |
| commit | 50dbab5fe4feaf5356132ff463a71c76e4cc1a3a (patch) | |
| tree | 11d39001b1b99aa706f05973c5b5642946edc71d /src/main/java/common/OrgChannelTuple.java | |
Initial Commit
Diffstat (limited to 'src/main/java/common/OrgChannelTuple.java')
| -rw-r--r-- | src/main/java/common/OrgChannelTuple.java | 37 |
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; + } +} |
