Changed some properties
This commit is contained in:
parent
bd077866d9
commit
82c28841a7
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
||||||
class CalendarEvent (object):
|
class CalendarEvent (object):
|
||||||
"""Defines a calendar event, independent of any implementation"""
|
"""Defines a calendar event, independent of any implementation"""
|
||||||
def __init__ (self):
|
def __init__ (self):
|
||||||
self.datetime = None
|
self.begin_datetime = None
|
||||||
self.duration = None
|
self.end_datetime = None
|
||||||
|
|
||||||
self.title = None
|
self.title = None
|
||||||
self.description = None
|
self.description = None
|
||||||
|
|
Loading…
Reference in a new issue