openquestions-1.0.x-dev/src/Model/OqApplicationInterface.php
src/Model/OqApplicationInterface.php
<?php
namespace Drupal\openquestions\Model;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining an oq application entity type.
*/
interface OqApplicationInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
