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