Skip to content

Commit c11d835

Browse files
committed
PaymentStatus 추가
1 parent 1a256f6 commit c11d835

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

payment/enum.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from enum import Enum
2+
3+
4+
class PaymentStatus(Enum):
5+
BEFORE_PAYMENT = 1
6+
PAYMENT_FAILED = 2
7+
PAYMENT_SUCCESS = 3
8+
REFUND_FAILED = 4
9+
REFUND_SUCCESS = 5

0 commit comments

Comments
 (0)