layout_builder_tomsaw-1.0.x-dev/src/SegmentInterface.php
src/SegmentInterface.php
<?php
declare(strict_types=1);
namespace Drupal\layout_builder_tomsaw;
use Drupal\Core\Entity\EntityPublishedInterface;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a segment entity type.
*/
interface SegmentInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface, EntityPublishedInterface {
}
