24 lines
650 B
Java
24 lines
650 B
Java
package net.nevet5gi.buzzbot.objects;
|
|
|
|
import java.sql.Date;
|
|
import java.sql.Time;
|
|
|
|
public class MuteData extends DisciplineData {
|
|
private int muteLength;
|
|
|
|
public MuteData() {}
|
|
|
|
public MuteData(long userId, String userName, Date date, Time time, String reason, int muteLength, String modName, long modId, String serverName, long serverId) {
|
|
super(userId, userName, date, time, reason, modName, modId, serverName, serverId);
|
|
this.muteLength = muteLength;
|
|
}
|
|
|
|
public void setMuteLength(int muteLength) {
|
|
this.muteLength = muteLength;
|
|
}
|
|
|
|
public int getMuteLength() {
|
|
return muteLength;
|
|
}
|
|
}
|