All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.w4p.telegram.model.TelegramBotCommand Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy