Files
digifi-EventManager/app/enums/repayment_schedule_status.py
T
2025-08-27 12:00:42 +01:00

5 lines
124 B
Python

from enum import Enum
class RepaymentScheduleStatus(str, Enum):
PARTIALLY_PAID = "partially_paid"
REPAID = "repaid"