com.w4p.telegram.model.TelegramBotCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-telegram Show documentation
Show all versions of spring-telegram Show documentation
Java TelegramBot for Spring Framework with async multithreading support
package com.w4p.telegram.model;
import lombok.Getter;
@Getter
public class TelegramBotCommand {
private String command;
private String description;
public TelegramBotCommand(String command, String description) {
this.command = command;
this.description = description;
}
}