9 lines
127 B
Python

from enum import Enum
from enum import auto
class BreedSize(Enum):
SMALL = auto()
MEDIUM = auto()
LARGE = auto()