mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-28 14:30:13 +00:00
13 lines
202 B
PHP
13 lines
202 B
PHP
<?php
|
|
|
|
namespace AIO\Container;
|
|
|
|
class ContainerVolume {
|
|
public function __construct(
|
|
public string $name,
|
|
public string $mountPoint,
|
|
public bool $isWritable
|
|
) {
|
|
}
|
|
}
|