mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -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;
|
|
}
|