1

add Event related stuff and Group example

This commit is contained in:
killerber4t
2020-03-06 14:20:04 +01:00
parent 2ba8176500
commit 75143b33c0
11 changed files with 82 additions and 18 deletions

View File

@ -0,0 +1,15 @@
package mops.gruppen2.Events;
import lombok.AllArgsConstructor;
import lombok.Getter;
import org.springframework.data.annotation.Id;
@Getter
@AllArgsConstructor
public class Event {
@Id
Long id;
Long gruppe_id;
Long user_id;
}