1<?php
2
3namespace Sabre\CalDAV;
4
5use Sabre\DAV;
6
7/**
8 * CalendarObject interface
9 *
10 * Extend the ICalendarObject interface to allow your custom nodes to be picked up as
11 * CalendarObjects.
12 *
13 * Calendar objects are resources such as Events, Todo's or Journals.
14 *
15 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
16 * @author Evert Pot (http://evertpot.com/)
17 * @license http://sabre.io/license/ Modified BSD License
18 */
19interface ICalendarObject extends DAV\IFile {
20
21}
22