1

change index.html

This commit is contained in:
tomvahl
2020-03-06 13:18:53 +01:00
parent 7dc7fafed7
commit 18412accf8
2 changed files with 13 additions and 10 deletions

View File

@ -10,12 +10,8 @@ import java.util.List;
public class Gruppe {
@Id
Long id;
String titel;
String beschreibung;
private String titel;
private String beschreibung;
List<Teilnehmer> teilnehmersList;
public Gruppe (String titel, String beschreibung){
this.titel = titel;
this.beschreibung = beschreibung;
}
}