16 lines
208 B
Java
16 lines
208 B
Java
package app.events;
|
|
|
|
public class ThemeChangedEvent {
|
|
|
|
private String theme;
|
|
|
|
public ThemeChangedEvent(String theme) {
|
|
this.theme = theme;
|
|
}
|
|
|
|
public String getTheme() {
|
|
return theme;
|
|
}
|
|
|
|
}
|