E-Paper-Calendar/Calendar/CalendarEvent.py

14 lines
No EOL
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