20 lines
428 B
PHP
20 lines
428 B
PHP
<?php
|
|
|
|
namespace App\Domains\Budget\Actions\CreateEstimate;
|
|
|
|
use App\Enumerations\InvoiceType;
|
|
use App\Models\CostUnit;
|
|
use App\ValueObjects\Amount;
|
|
|
|
class CreateEstimateRequest {
|
|
function __construct(
|
|
public string $amountType,
|
|
public string $description,
|
|
public Amount $amount,
|
|
public string $estimateType,
|
|
public CostUnit $costUnit,
|
|
public int $estimateId,
|
|
) {
|
|
}
|
|
}
|