creating networks wip

This commit is contained in:
2025-04-07 16:39:53 +01:00
parent 32d30e00aa
commit b2070e052d
11 changed files with 108 additions and 19 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace App\Data\ServerProviders;
class Network
{
public function __construct(
public string $id,
public string $name,
public string $ipRange,
) {}
}