From 3b16f60ab0355e026cc71976d067fbb8f742c52a Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Tue, 15 Jul 2025 17:07:37 +0200 Subject: [PATCH] Added PRE_ORDER --- clients_protocol/stores.py | 1 + 1 file changed, 1 insertion(+) diff --git a/clients_protocol/stores.py b/clients_protocol/stores.py index 3f0966c..d8ed6e5 100644 --- a/clients_protocol/stores.py +++ b/clients_protocol/stores.py @@ -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)