bat-8.x-1.x-dev/modules/bat_event_series/src/EventSeriesInterface.php
modules/bat_event_series/src/EventSeriesInterface.php
<?php
namespace Drupal\bat_event_series;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface for defining Event Series entities.
*
* @ingroup bat
*/
interface EventSeriesInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {
}
