Files
mareike/app/Domains/CostUnit/Actions/ChangeCostUnitState/ChangeCostUnitStateResponse.php

12 lines
207 B
PHP

<?php
namespace App\Domains\CostUnit\Actions\ChangeCostUnitState;
class ChangeCostUnitStateResponse {
public bool $success;
public function __construct() {
$this->success = false;
}
}