openquestions-1.0.x-dev/src/Model/OqVoteInterface.php
src/Model/OqVoteInterface.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 vote entity type.
*/
interface OqVoteInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
