Major restructuring to get automatic decoding/encoding
[pycalendar.git] / pycalendar / component / todo.py
diff --git a/pycalendar/component/todo.py b/pycalendar/component/todo.py
new file mode 100644 (file)
index 0000000..6f2b36c
--- /dev/null
@@ -0,0 +1,11 @@
+# Copyright
+
+from . import base as _base
+
+
+class ToDo (_base.Component):
+    """A to-do entry
+
+    As defined in :RFC:`5545`, section 3.6.2 (To-Do Component).
+    """
+    name = 'VTODO'