. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Modules\Crm\Tools\Calendar\Items; use Espo\Core\Field\DateTime; use Espo\Modules\Crm\Tools\Calendar\Item; use stdClass; class WorkingRange implements Item { private DateTime $start; private DateTime $end; public function __construct(DateTime $start, DateTime $end) { $this->start = $start; $this->end = $end; } public function getStart(): DateTime { return $this->start; } public function getEnd(): DateTime { return $this->end; } public function getRaw(): stdClass { return (object) [ 'dateStart' => $this->start->toString(), 'dateEnd' => $this->end->toString(), 'isWorkingRange' => true, ]; } }