11 lines
196 B
Python

from enum import Enum
class InfoToHighlight(str, Enum):
NONE = "none"
PLAYCOUNT = "playCount"
WATCHCOUNT = "watchCount"
def __str__(self) -> str:
return str(self.value)