13 lines
207 B
PHP
13 lines
207 B
PHP
<?php
|
|
|
|
namespace App\Domains\Budget\Actions\DeleteEstimate;
|
|
|
|
use App\Models\CostUnitEstimate;
|
|
|
|
class DeleteEstimateRequest {
|
|
public function __construct(public CostUnitEstimate $estimate)
|
|
{
|
|
|
|
}
|
|
}
|