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/opencase_cases/src/Entity/OCCaseTypeInterface.php

14 lines
301 B
PHP

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