Files
nextcloud/php/src/Container/ContainerVolume.php
2026-02-03 13:25:53 +01:00

14 lines
227 B
PHP

<?php
declare(strict_types=1);
namespace AIO\Container;
class ContainerVolume {
public function __construct(
public string $name,
public string $mountPoint,
public bool $isWritable
) {
}
}