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