mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
24 lines
439 B
PHP
24 lines
439 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\IpLookup;
|
|
|
|
use App\Enums\Weekday;
|
|
|
|
class IpLookupResponseDto
|
|
{
|
|
public ?string $timezone;
|
|
|
|
public ?Weekday $startOfWeek;
|
|
|
|
public ?string $currency;
|
|
|
|
public function __construct(?string $timezone, ?Weekday $startOfWeek, ?string $currency)
|
|
{
|
|
$this->timezone = $timezone;
|
|
$this->startOfWeek = $startOfWeek;
|
|
$this->currency = $currency;
|
|
}
|
|
}
|