9 lines
198 B
Python
9 lines
198 B
Python
import enum
|
|
|
|
|
|
class MathebauMLType(enum.Enum):
|
|
"""Different types of mailinglists at the mathebau."""
|
|
internalPublic = 10
|
|
internalPrivate = 15
|
|
broadPublic = 20
|
|
broadPrivate = 25
|