blob: f2054e8a5a684e7ec33d3d757790a97280fe5f62 (
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
27
28
29
30
31
32
33
|
package de.torui.coflsky.commands;
import com.google.gson.annotations.SerializedName;
public class RawCommand {
@SerializedName("type")
private String Type;
@SerializedName("data")
private String Data;
public RawCommand(String type, String data) {
this.Type = type;
this.Data=data;
}
public String getType() {
return Type;
}
public void setType(String type) {
Type = type;
}
public String getData() {
return Data;
}
public void setData(String data) {
Data = data;
}
}
|