2019-01-20 10:41:58 +01:00

18 lines
405 B
PHP

<?php
namespace App\Domain\RequestManagement\Action;
use App\Attribut\ActionTypeAttributInterface;
use App\Domain\RequestManagement\User\RequestedUserInterface;
/**
* An action containes multiple attributes which are neccessary to process a request.
*
* @see ActionType
*
* @author kevinfrantz
*/
interface RequestedActionInterface extends ActionTypeAttributInterface, RequestedUserInterface
{
}