slight changes to package structure + naming
This commit is contained in:
12
src/main/java/mops/gruppen2/domain/event/Event.java
Normal file
12
src/main/java/mops/gruppen2/domain/event/Event.java
Normal file
@ -0,0 +1,12 @@
|
||||
package mops.gruppen2.domain.event;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public class Event {
|
||||
long id;
|
||||
long gruppe_id;
|
||||
String user_id;
|
||||
}
|
||||
Reference in New Issue
Block a user