web/lib/Collection.php
2021-12-09 13:13:16 -06:00

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);
}
}