mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-28 06:20:14 +00:00
14 lines
227 B
PHP
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
|
|
) {
|
|
}
|
|
}
|