diff --git a/server/model/color.py b/server/model/color.py new file mode 100644 index 0000000..e49b1cb --- /dev/null +++ b/server/model/color.py @@ -0,0 +1,11 @@ +from enum import Enum + + +class Color(Enum): + Hearts = "♥" + Spades = "♠" + Clubs = "♣" + Diamonds = "♦" + + def json(self): + return self.value \ No newline at end of file