youtube_playlist-8.x-1.x-dev/src/YoutubePlaylistInterface.php
src/YoutubePlaylistInterface.php
<?php
namespace Drupal\youtube_playlist;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a youtube playlist entity type.
*/
interface YoutubePlaylistInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
