6 lines
74 B
Python
6 lines
74 B
Python
from enum import IntEnum
|
|
|
|
class PaymentPlanType(IntEnum):
|
|
STAGED = 0
|
|
|