org.khasanof.state.event.FltStateEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-state Show documentation
Show all versions of fluent-state Show documentation
Fluent - Easy Telegram Bots with Spring
The newest version!
package org.khasanof.state.event;
import lombok.*;
import org.khasanof.state.FltState;
/**
* @author Nurislom
* @see org.khasanof.state.event
* @since 3/2/2024 12:13 PM
*/
@Getter
@Setter
@ToString
@NoArgsConstructor
@AllArgsConstructor
public class FltStateEvent {
private FltState state;
}