web/lib/EbookSource.php
2024-01-08 16:08:57 -06:00

10 lines
166 B
PHP

<?
class EbookSource{
public int $Type;
public string $Url;
public function __construct(int $type, string $url){
$this->Type = $type;
$this->Url = $url;
}
}