forked from gergely/calendar-social
16 lines
294 B
Python
16 lines
294 B
Python
|
class CalendarSystem:
|
||
|
__has_months__ = False
|
||
|
__has_weeks__ = False
|
||
|
|
||
|
@property
|
||
|
def day_names(self):
|
||
|
raise NotImplementedError()
|
||
|
|
||
|
@property
|
||
|
def month(self):
|
||
|
raise NotImplementedError()
|
||
|
|
||
|
@property
|
||
|
def days(self):
|
||
|
raise NotImplementedError()
|