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