summaryrefslogtreecommitdiff
path: root/type/people.py
diff options
context:
space:
mode:
Diffstat (limited to 'type/people.py')
-rw-r--r--type/people.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/type/people.py b/type/people.py
new file mode 100644
index 0000000..1dc0421
--- /dev/null
+++ b/type/people.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python3
+
+import enum
+
+
+class Person(enum.Enum):
+ UNKNOWN = 0
+ SCOTT = 1
+ LYNN = 2
+ ALEX = 3
+ AARON_AND_DANA = 4
+ AARON = 4
+ DANA = 4
+