mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
11 lines
158 B
PHP
11 lines
158 B
PHP
<?
|
|
class EbookSource{
|
|
public $Type;
|
|
public $Url;
|
|
|
|
public function __construct(int $type, string $url){
|
|
$this->Type = $type;
|
|
$this->Url = $url;
|
|
}
|
|
}
|
|
?>
|