pm-4.1.x-dev/modules/pm_feature/src/PmFeatureInterface.php
modules/pm_feature/src/PmFeatureInterface.php
<?php
namespace Drupal\pm_feature;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a pm feature entity type.
*/
interface PmFeatureInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
