Defined CalendarEvent container.

This commit is contained in:
Maximilian Giller 2019-02-20 18:57:55 +01:00
parent ff8f0a98ef
commit 15fb84641c

14
Calendar/CalendarEvent.py Normal file
View file

@ -0,0 +1,14 @@
class CalendarEvent (object):
"""Defines a calendar event, independent of any implementation"""
def __init__ (self):
self.date = None
self.time = None
self.duration = None
self.title = None
self.description = None
self.attendees = []
self.highlight = None
self.place = None
self.fetch_time = None