za.co.knonchalant.candogram.domain.BaseDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CanDoGram Show documentation
Show all versions of CanDoGram Show documentation
Wraps Telegram and Discord bot API, so you can code once and deploy multi.
The newest version!
package za.co.knonchalant.candogram.domain;
/**
* Created by evan on 2016/03/12.
*/
public class BaseDetail {
private int step;
public BaseDetail() {
}
public BaseDetail(int step) {
this.step = step;
}
public int getStep() {
return step;
}
public void setStep(int step) {
this.step = step;
}
public void nextStep() {
step++;
}
}