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