recurring_events-2.0.x-dev/src/Entity/EventSeriesTypeInterface.php
src/Entity/EventSeriesTypeInterface.php
<?php
declare(strict_types=1);
namespace Drupal\recurring_events\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining Event series type entities.
*/
interface EventSeriesTypeInterface extends ConfigEntityInterface {
/**
* Gets the description.
*
* @return string
* The description of this eventseries type.
*/
public function getDescription();
}
