Files
nextcloud/php/src/Container/ContainerVolume.php
T
2024-10-07 10:12:43 +02:00

13 lines
202 B
PHP

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