mirror of
https://github.com/Dark98/SliceBeam.git
synced 2026-07-03 00:38:53 +00:00
13 lines
234 B
Java
13 lines
234 B
Java
package ru.ytkab0bp.slicebeam.events;
|
|
|
|
import ru.ytkab0bp.eventbus.Event;
|
|
|
|
@Event
|
|
public class NeedDismissSnackbarEvent {
|
|
public final String tag;
|
|
|
|
public NeedDismissSnackbarEvent(String tag) {
|
|
this.tag = tag;
|
|
}
|
|
}
|