1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 02:09:23 +02:00
ampache/modules/React/Dns/Query/Query.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;
}
}