16 lines
274 B
Java
16 lines
274 B
Java
package ru.dmitriymx.vkapi.longpoll;
|
|
|
|
import com.google.gson.JsonArray;
|
|
|
|
public class Event {
|
|
private JsonArray jsonArray;
|
|
|
|
Event(JsonArray jsonArray) {
|
|
this.jsonArray = jsonArray;
|
|
}
|
|
|
|
public JsonArray getRawData() {
|
|
return jsonArray;
|
|
}
|
|
}
|