45 lines
749 B
Python
45 lines
749 B
Python
"""Feeding type enumeration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class FeedingType(StrEnum):
|
|
"""Enumeration of feeding types."""
|
|
|
|
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"
|