1

add missing enums

This commit is contained in:
Christoph
2020-03-11 15:34:52 +01:00
parent e8770066f8
commit b7b4485d03
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package mops.gruppen2.domain;
public enum GroupType {
SIMPLE, LECTURE
}

View File

@ -0,0 +1,5 @@
package mops.gruppen2.domain;
public enum Visibility {
PUBLIC, PRIVATE
}