E-Paper-Calendar/Calendar/CalendarEvent.py
2019-02-25 21:43:27 +01:00

15 lines
No EOL
399 B
Python

class CalendarEvent (object):
"""Defines a calendar event, independent of any implementation"""
def __init__ (self):
self.datetime = None
self.duration = None
self.title = None
self.description = None
self.attendees = []
self.highlight = None
self.calendar_name = None
self.location = None
self.fetch_datetime = None