blob: f34831871371c5d726845f95450edda2cad18a42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.juick.server.protocol;
/**
* Created by vitalyster on 08.04.2016.
*/
public class ProtocolReply {
private String result;
public ProtocolReply(String text) {
this.result = text;
}
public String getResult() {
return result;
}
}
|