16 lines
287 B
PHP
16 lines
287 B
PHP
<?php
|
|
|
|
namespace App\Domains\CostUnit\Actions\CreateCostUnit;
|
|
|
|
use App\Models\CostUnit;
|
|
|
|
class CreateCostUnitResponse {
|
|
public bool $success;
|
|
public ?CostUnit $costUnit;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
$this->costUnit = null;
|
|
}
|
|
}
|