mirror of
https://github.com/sigmasternchen/drnk.me
synced 2025-03-15 09:48:54 +00:00
21 lines
No EOL
424 B
PHP
21 lines
No EOL
424 B
PHP
<?php
|
|
|
|
class URL {
|
|
public int $id;
|
|
public DateTime $created;
|
|
public DateTime $updated;
|
|
public ?DateTime $deleted;
|
|
public string $slug;
|
|
public string $url;
|
|
public ?string $accessKey;
|
|
|
|
public function __construct(
|
|
string $slug,
|
|
string $url,
|
|
?string $accessKey
|
|
) {
|
|
$this->slug = $slug;
|
|
$this->url = $url;
|
|
$this->accessKey = $accessKey;
|
|
}
|
|
} |