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