slides_presentation-8.x-1.x-dev/src/PresentationInterface.php
src/PresentationInterface.php
<?php
namespace Drupal\slides_presentation;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface for defining Presentation entities.
*
* @ingroup slides_presentation
*/
interface PresentationInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {
// Add get/set methods for your configuration properties here.
}
