Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit aa02795

Browse files
committed
Update
1 parent 5ccff22 commit aa02795

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
from enum import Enum, auto
2+
3+
4+
class Size(Enum):
5+
FREE_SIZE = auto()
6+
UNDEFUNED = auto()
7+
X_SMALL = auto()
8+
SMALL = auto()
9+
MEDIUM = auto()
10+
LARGE = auto()
11+
X_LARGE = auto()
12+
13+
14+
class Color(Enum):
15+
UNDEFINED = auto()
16+
MULTICOLOR = auto()
17+
BLACK = auto()
18+
BLUE = auto()
19+
GREEN = auto()
20+
YELLOW = auto()
21+
ORANGE = auto()
22+
PURPLE = auto()
23+
GRAY = auto()
24+
25+
26+
class BRAND(Enum):
27+
BRAND_A = auto()
28+
BRAND_B = auto()
29+
BRAND_C = auto()
30+
BRAND_D = auto()
31+
BRAND_E = auto()
32+
UNDEFINED = auto()
33+
34+
35+
class Cloth:
36+
def move(self):
37+
pass
38+
39+
40+
class Items:
41+
products: list[Cloth] = []

0 commit comments

Comments
 (0)