16 lines
360 B
PHP
16 lines
360 B
PHP
<?php
|
|
|
|
namespace App\Domains\CostUnit\Actions\ChangeCostUnitTreasurers;
|
|
|
|
use App\Models\CostUnit;
|
|
|
|
class ChangeCostUnitTreasurersRequest {
|
|
public array $treasurers;
|
|
public CostUnit $costUnit;
|
|
|
|
public function __construct(CostUnit $costUnit, array $treasurers) {
|
|
$this->treasurers = $treasurers;
|
|
$this->costUnit = $costUnit;
|
|
}
|
|
}
|