mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 18:29:40 +02:00
19 lines
344 B
PHP
19 lines
344 B
PHP
<?php
|
|
|
|
namespace React\Dns\Query;
|
|
|
|
class Query
|
|
{
|
|
public $name;
|
|
public $type;
|
|
public $class;
|
|
public $currentTime;
|
|
|
|
public function __construct($name, $type, $class, $currentTime)
|
|
{
|
|
$this->name = $name;
|
|
$this->type = $type;
|
|
$this->class = $class;
|
|
$this->currentTime = $currentTime;
|
|
}
|
|
}
|