Defined CalendarEvent container.
This commit is contained in:
parent
ff8f0a98ef
commit
15fb84641c
1 changed files with 14 additions and 0 deletions
14
Calendar/CalendarEvent.py
Normal file
14
Calendar/CalendarEvent.py
Normal 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
|
Loading…
Reference in a new issue