mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
13 lines
248 B
PHP
13 lines
248 B
PHP
<?
|
|
|
|
class Collection{
|
|
public $Name;
|
|
public $Url;
|
|
public $SequenceNumber = null;
|
|
public $Type = null;
|
|
|
|
public function __construct(string $name){
|
|
$this->Name = $name;
|
|
$this->Url = '/collections/' . Formatter::MakeUrlSafe($this->Name);
|
|
}
|
|
}
|