Browse Source

add season schema

highing666 3 years ago
parent
commit
8244f5a316
1 changed files with 7 additions and 0 deletions
  1. 7 0
      app/schemas/season.py

+ 7 - 0
app/schemas/season.py

@@ -0,0 +1,7 @@
+from enum import Enum
+
+
+class Season(str, Enum):
+    cooling = "Cooling"
+    heating = "Warm"
+    transition = "Transition"