mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-05-08 07:58:02 +08:00
16 lines
224 B
PHP
16 lines
224 B
PHP
<?php
|
|
|
|
namespace Convoy\Data\Server;
|
|
|
|
use Spatie\LaravelData\Data;
|
|
|
|
class MacAddressData extends Data
|
|
{
|
|
public function __construct(
|
|
public ?string $proxmox,
|
|
public ?string $eloquent,
|
|
)
|
|
{
|
|
}
|
|
}
|