bat-8.x-1.x-dev/modules/bat_unit/src/UnitTypeInterface.php
modules/bat_unit/src/UnitTypeInterface.php
<?php
namespace Drupal\bat_unit;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface for defining Unit type entities.
*
* @ingroup bat
*/
interface UnitTypeInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {
}
