mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 09:32:24 -04:00
13 lines
286 B
PHP
13 lines
286 B
PHP
<?
|
|
/**
|
|
* @property Collection $Collection
|
|
*/
|
|
class CollectionMembership{
|
|
use Traits\Accessor;
|
|
|
|
public ?int $CollectionEbookId = null;
|
|
public ?int $EbookId = null;
|
|
public ?int $CollectionId = null;
|
|
public ?int $SequenceNumber = null;
|
|
protected ?Collection $_Collection = null;
|
|
}
|