Basic user management
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domains\UserManagement\Actions\UserRegistration;
|
||||
|
||||
use App\Models\User;
|
||||
|
||||
class UserRegistrationResponse {
|
||||
public ?User $user;
|
||||
public bool $success;
|
||||
|
||||
public function __construct() {
|
||||
$this->user = null;
|
||||
$this->success = false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user