This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/zencrm_entities/src/Entity/CaseEntityTypeInterface.php

14 lines
310 B
PHP

<?php
namespace Drupal\zencrm_entities\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining Case entity type entities.
*/
interface CaseEntityTypeInterface extends ConfigEntityInterface {
// Add get/set methods for your configuration properties here.
}