2023-04-17 14:43:22 +02:00
|
|
|
import enum
|
|
|
|
|
|
|
|
|
|
|
|
class MathebauMLType(enum.Enum):
|
|
|
|
"""Different types of mailinglists at the mathebau."""
|
2023-04-17 21:35:57 +02:00
|
|
|
internalPublic = 10
|
|
|
|
internalPrivate = 15
|
2023-04-17 14:43:22 +02:00
|
|
|
broadPublic = 20
|
|
|
|
broadPrivate = 25
|