summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RecurrenceRangeBaseType.php
blob: d1418fbe2bc2663708acbb93bc926c22b89bd04b (plain) (tree)


























                                                                      
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\RecurrenceRangeBaseType.
 */

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Base class for recurrence ranges,
 *
 * @package php-ews\Type
 */
abstract class RecurrenceRangeBaseType extends Type
{
    /**
     * Represents the start date of a recurring task or calendar item.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @todo Make a date object that extends DateTime.
     */
    public $StartDate;
}