TDLightTelegramBots/src/main/java/org/telegram/telegrambots/api/methods/ParseMode.java

13 lines
305 B
Java
Raw Normal View History

2016-04-11 02:53:53 +02:00
package org.telegram.telegrambots.api.methods;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief Type of parse modes for text in messages
* @date 10 of April of 2016
*/
public class ParseMode {
public static final String MARKDOWN = "Markdown";
public static final String HTML = "html";
}