ai_agents_test-1.0.0-alpha1/src/AiAgentsTestGroupInterface.php
src/AiAgentsTestGroupInterface.php
<?php
declare(strict_types=1);
namespace Drupal\ai_agents_test;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining an ai agents test group entity type.
*/
interface AiAgentsTestGroupInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
