feat: add RequestToPublish to ClassifiedAd with state management

This commit is contained in:
2026-07-29 01:37:34 -04:00
parent d098a84b03
commit 3bae739bc0
5 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from enum import Enum
class ClassifiedAdState(Enum):
PendingReview = "PendingReview"
Active = "Active"
Inactive = "Inactive"
MarkedAsSold = "MarkedAsSold"