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