xref: /plugin/davcal/vendor/sabre/dav/lib/CalDAV/ICalendarObject.php (revision 185e2535914616e98630b0777145a3e6d5c8d81b)
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) 2007-2015 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