12 lines
211 B
PHP
12 lines
211 B
PHP
<?php
|
|
|
|
namespace App\Domains\UserManagement\Actions\UserChangePassword;
|
|
|
|
class UserChangePasswordResponse {
|
|
public bool $success;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
}
|
|
}
|