ai_agents_test-1.0.0-alpha1/src/AgentTestResultInterface.php
src/AgentTestResultInterface.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 agent test result entity type.
*/
interface AgentTestResultInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
