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

14 lines
224 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace AIO\Container;
class ContainerPort {
public function __construct(
public string $port,
public string $ipBinding,
public string $protocol
) {
}
}