This commit is contained in:
copyrighttxt
2026-07-06 13:28:00 -04:00
commit 05211f73ef
441 changed files with 94128 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
from enum import Enum
class TradeStatus( Enum ):
Pending = 0
Accepted = 1
Declined = 2
Expired = 3
Cancelled = 4