drnk.me/persistence/models/URL.php

21 lines
424 B
PHP
Raw Normal View History

2023-11-29 21:17:08 +00:00
<?php
class URL {
public int $id;
public DateTime $created;
public DateTime $updated;
2023-11-29 21:40:15 +00:00
public ?DateTime $deleted;
2023-11-29 21:17:08 +00:00
public string $slug;
public string $url;
2023-11-29 21:40:15 +00:00
public ?string $accessKey;
2023-11-29 21:17:08 +00:00
public function __construct(
string $slug,
string $url,
2023-11-29 21:40:15 +00:00
?string $accessKey
2023-11-29 21:17:08 +00:00
) {
$this->slug = $slug;
$this->url = $url;
$this->accessKey = $accessKey;
}
}