Sort collections by their sequence number

This commit is contained in:
Alex Cabal 2020-05-21 15:49:48 -05:00
parent f7e3a5c39f
commit 8efec57abd
3 changed files with 15 additions and 3 deletions

View file

@ -2,6 +2,7 @@
class Collection{
public $Name;
public $Url;
public $SequenceNumber = null;
public function __construct(string $name){
$this->Name = $name;