10 lines
No EOL
212 B
Python
10 lines
No EOL
212 B
Python
from django.db.models import IntegerChoices, Model
|
|
|
|
class CycleChoices(IntegerChoices):
|
|
DAYS = 0, "Days"
|
|
WEEKS = 1, "Weeks"
|
|
MONTHS = 2, "Months"
|
|
YEARS = 3, "Years"
|
|
|
|
class Billable(Model):
|
|
pass |