WIP
[demos/spring/data-jdbc] / src / main / java / de / trion / kafka / outbox / UserEvent.java
1 package de.trion.kafka.outbox;
2
3 public class UserEvent {
4     public enum Type { CREATED, LOGIN, LOGOUT, DELETED }
5
6     Long id;
7     Type type;
8     String user;
9 }