7 lines
87 B
Python
7 lines
87 B
Python
from enum import IntEnum
|
|
|
|
|
|
class PaymentGateway(IntEnum):
|
|
STRIP = 1
|
|
WECHAT = 2
|