13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
namespace App\Domains\Budget\Actions\DeleteEstimate;
|
|
|
|
class DeleteEstimateResponse {
|
|
public bool $success;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->success = false;
|
|
}
|
|
}
|