Easier and more self documenting patterns for loading/saving Persistent
[python_utils.git] / type / people.py
1 #!/usr/bin/env python3
2
3 # © Copyright 2021-2022, Scott Gasch
4
5 """An enum to represent people."""
6
7 import enum
8
9
10 class Person(enum.Enum):
11     """An enum to represent people."""
12
13     UNKNOWN = 0
14     SCOTT = 1
15     LYNN = 2
16     ALEX = 3
17     AARON_AND_DANA = 4
18     AARON = 4
19     DANA = 4