mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
20 lines
331 B
Python
20 lines
331 B
Python
import enum
|
|
|
|
|
|
class DotaStars(enum.Enum):
|
|
I = 1
|
|
II = 2
|
|
III = 3
|
|
IV = 4
|
|
V = 5
|
|
VI = 6
|
|
VII = 7
|
|
|
|
def __str__(self):
|
|
return self.name.upper()
|
|
|
|
def __repr__(self):
|
|
return f"{self.__class__.__qualname__}.{self.name}"
|
|
|
|
def __gt__(self, other):
|
|
return self.value > other.value
|