mikrotik-java/src/main/java/me/legrange/mikrotik/Done.java

24 lines
338 B
Java

package me.legrange.mikrotik;
/**
* Internal representation of !done
* @author GideonLeGrange
*/
class Done extends Response {
Done(String tag) {
super(tag);
}
void setHash(String hash) {
this.hash = hash;
}
String getHash() {
return hash;
}
private String hash;
}