14 lines
378 B
Python
14 lines
378 B
Python
|
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
|