You are here

ContactInterface.php in CRM Core 8.3

File

modules/crm_core_contact/src/ContactInterface.php
View source
<?php

namespace Drupal\crm_core_contact;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;

/**
 * Defines methods for CRM Contact entities.
 */
interface ContactInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {

}

Interfaces

Namesort descending Description
ContactInterface Defines methods for CRM Contact entities.