https://git.useribm.hu
/
mediacube.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
0c8bc09c08dd3d5e411ce9e4c95b2e2a42886c20
[mediacube.git]
/
1
package hu.user.mcvodsync.service.event;
2
3
import lombok.Getter;
4
import lombok.Setter;
5
import org.springframework.context.ApplicationEvent;
6
7
@Getter
8
@Setter
9
public class ImportStartedEvent extends ApplicationEvent {
10
11
public ImportStartedEvent(Object source) {
12
super(source);
13
}
14
}