mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-06-23 18:57:46 +08:00
14 lines
211 B
PHP
14 lines
211 B
PHP
<?php
|
|
|
|
namespace Convoy\Data\Server;
|
|
|
|
use Spatie\LaravelData\Data;
|
|
|
|
class MacAddressData extends Data
|
|
{
|
|
public function __construct(
|
|
public ?string $proxmox,
|
|
public ?string $eloquent,
|
|
) {}
|
|
}
|