blob: 69f8cd5d15774349c1c2d730090030ba211188ea (
plain)
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
|
package com.encrox.twitchbot.client;
public class IRCMessage {
private String username, message;
private byte level;
public IRCMessage(String username, byte level, String message) {
this.username = username;
this.level = level;
this.message = message;
}
public String getUsername() {
return username;
}
public byte getLevel() {
return level;
}
public String getMessage() {
return message;
}
}
|