You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
233 B
14 lines
233 B
|
11 years ago
|
package org.telegram.api;
|
||
|
|
|
||
|
|
import org.json.JSONObject;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author Ruben Bermudez
|
||
|
|
* @version 1.0
|
||
|
|
* @brief Reply keyboard abstract type
|
||
|
|
* @date 20 of June of 2015
|
||
|
|
*/
|
||
|
|
public interface ReplyKeyboard {
|
||
|
|
JSONObject toJson();
|
||
|
|
}
|