14 lines
258 B
PHP
14 lines
258 B
PHP
<?php
|
|
|
|
namespace App\Domains\Budget\Actions\CreateEstimate;
|
|
|
|
class CreateEstimateResponse {
|
|
public bool $success;
|
|
public ?int $estimateId;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
$this->estimateId = null;
|
|
}
|
|
}
|