slight changes to package structure + naming
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
package mops.gruppen2.domain.event;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public class UpdateGroupTitleEvent extends Event {
|
||||
String titel;
|
||||
|
||||
public UpdateGroupTitleEvent(long id, long gruppe_id, String user_id, String titel) {
|
||||
super(id, gruppe_id, user_id);
|
||||
this.titel = titel;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user