src/DTO/ApiKey/ApiKeyPatch.php
<?php
declare(strict_types = 1);
/**
* /src/DTO/ApiKey/ApiKeyPatch.php
*
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
*/
namespace App\DTO\ApiKey;
use App\DTO\Traits\PatchUserGroups;
/**
* @package App\DTO\ApiKey
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
*/
class ApiKeyPatch extends ApiKey
{
use PatchUserGroups;
}