Files
rosetta-wss/src/main/java/com/rosetta/im/event/Event.java
2026-02-02 22:38:46 +02:00

19 lines
273 B
Java

package com.rosetta.im.event;
public class Event {
private String name;
public Event() {}
public String getEventName() {
if(this.name == null) {
this.name = this.getClass().getSimpleName();
}
return this.name;
}
}