7 lines
75 B
Python
7 lines
75 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class Flavor(Enum):
|
||
|
RETAIL = 1
|
||
|
CLASSIC = 2
|