Compare commits

...

1 Commits
v0.1.5 ... main

Author SHA1 Message Date
3b16f60ab0 Added PRE_ORDER
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 28s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 26s
2025-07-15 17:07:37 +02:00

View File

@ -40,6 +40,7 @@ class StoreOfferProperty(enum.Enum):
AUCTION = enum.auto()
SOLD_OUT = enum.auto()
DISCOUNT = enum.auto()
PRE_ORDER = enum.auto()
@dataclasses.dataclass(frozen=True, order=True, slots=True)