farmOS/modules/core/plan/modules/record/src/Entity/PlanRecordTypeInterface.php

14 lines
333 B
PHP

<?php
namespace Drupal\plan_record\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
use Drupal\Core\Entity\EntityDescriptionInterface;
/**
* Provides an interface for defining Plan record relationship type entities.
*/
interface PlanRecordTypeInterface extends ConfigEntityInterface, EntityDescriptionInterface {
}