added functionality to log diaper changes
This commit is contained in:
@@ -9,3 +9,36 @@ class FeedingType(StrEnum):
|
||||
LEFT_BREAST = "left_breast"
|
||||
RIGHT_BREAST = "right_breast"
|
||||
BOTTLE = "bottle"
|
||||
|
||||
|
||||
class PoopAmount(StrEnum):
|
||||
"""Enumeration of poop amounts."""
|
||||
|
||||
LIGHT = "light"
|
||||
MEDIUM = "medium"
|
||||
HEAVY = "heavy"
|
||||
|
||||
|
||||
class PoopColor(StrEnum):
|
||||
"""Enumeration of poop colors."""
|
||||
|
||||
BLACK = "black"
|
||||
YELLOW = "yellow"
|
||||
GREEN = "green"
|
||||
BROWN = "brown"
|
||||
|
||||
|
||||
class PeeAmount(StrEnum):
|
||||
"""Enumeration of pee amounts."""
|
||||
|
||||
LIGHT = "light"
|
||||
MEDIUM = "medium"
|
||||
HEAVY = "heavy"
|
||||
|
||||
|
||||
class PeeColor(StrEnum):
|
||||
"""Enumeration of pee colors."""
|
||||
|
||||
CLEAR = "clear"
|
||||
YELLOW = "yellow"
|
||||
RED = "red"
|
||||
|
||||
Reference in New Issue
Block a user