Files
mareike/app/Domains/Budget/Actions/CreateEstimate/CreateEstimateResponse.php
T
2026-05-26 18:12:42 +02:00

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;
}
}