pm-4.1.x-dev/modules/pm_expense/src/PmExpenseInterface.php
modules/pm_expense/src/PmExpenseInterface.php
<?php
namespace Drupal\pm_expense;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a pm expense entity type.
*/
interface PmExpenseInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
