all-in-one/php/src/Container/ContainerVolume.php

13 lines
202 B
PHP
Raw Normal View History

2021-11-30 11:20:42 +01:00
<?php
namespace AIO\Container;
class ContainerVolume {
public function __construct(
public string $name,
public string $mountPoint,
public bool $isWritable
2021-11-30 11:20:42 +01:00
) {
}
}