io.dangernoodle.slack.events.SlackEvent Maven / Gradle / Ivy
The newest version!
package io.dangernoodle.slack.events;
public abstract class SlackEvent
{
private SlackEventType type;
public SlackEventType getType()
{
return type;
}
protected void setType(SlackEventType type)
{
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy