blob: 8a78dcc26069a209856367d086a7b560f752a9a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
}
}
|