diff options
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; + } +} |
