1*a1a3b679SAndreas Boehler<?php 2*a1a3b679SAndreas Boehler 3*a1a3b679SAndreas Boehlernamespace Sabre\CalDAV\Schedule; 4*a1a3b679SAndreas Boehler 5*a1a3b679SAndreas Boehler/** 6*a1a3b679SAndreas Boehler * The SchedulingObject represents a scheduling object in the Inbox collection 7*a1a3b679SAndreas Boehler * 8*a1a3b679SAndreas Boehler * @license http://sabre.io/license/ Modified BSD License 9*a1a3b679SAndreas Boehler * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 10*a1a3b679SAndreas Boehler */ 11*a1a3b679SAndreas Boehlerinterface ISchedulingObject extends \Sabre\CalDAV\ICalendarObject { 12*a1a3b679SAndreas Boehler 13*a1a3b679SAndreas Boehler} 14