mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
Add a SortOrder to preserve the order of the collections listed in content.opf for ebook.php, e.g., for To the Lighthouse: № 15 in the Modern Library’s 100 Best Novels set. Part of the Encyclopædia Britannica’s Great Books of the Western World set. № 2 in the BBC’s 100 Greatest British Novels (2015) set.
13 lines
278 B
PHP
13 lines
278 B
PHP
<?
|
|
/**
|
|
* @property Collection $Collection
|
|
*/
|
|
class CollectionMembership{
|
|
use Traits\Accessor;
|
|
|
|
public ?int $EbookId = null;
|
|
public ?int $CollectionId = null;
|
|
public ?int $SequenceNumber = null;
|
|
public ?int $SortOrder = null;
|
|
protected ?Collection $_Collection = null;
|
|
}
|