mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
14 lines
247 B
PHP
14 lines
247 B
PHP
<?
|
|
/**
|
|
* @property Collection $Collection
|
|
*/
|
|
class CollectionMembership{
|
|
use Traits\Accessor;
|
|
|
|
public int $EbookId;
|
|
public int $CollectionId;
|
|
public ?int $SequenceNumber = null;
|
|
public int $SortOrder;
|
|
|
|
protected Collection $_Collection;
|
|
}
|