E-Paper-Calendar/Calendar/CalendarEvent.py

15 lines
409 B
Python
Raw Normal View History

2019-02-20 18:57:55 +01:00
class CalendarEvent (object):
"""Defines a calendar event, independent of any implementation"""
def __init__ (self):
2019-02-26 16:23:27 +01:00
self.begin_datetime = None
self.end_datetime = None
2019-02-20 18:57:55 +01:00
self.title = None
self.description = None
self.attendees = []
self.highlight = None
2019-02-25 21:43:27 +01:00
self.calendar_name = None
self.location = None
self.fetch_datetime = None