Archived
0

Long poll listener

This commit is contained in:
2017-04-11 01:49:43 +03:00
parent 42afbabd30
commit e2e185ef7f
6 changed files with 144 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
/*
* DmitriyMX <dimon550@gmail.com>
* 2017-04-11
*/
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;
}
}