mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?
|
|
use function Safe\preg_replace;
|
|
|
|
/**
|
|
* @property Collection $Collection
|
|
*/
|
|
class CollectionMembership{
|
|
use Traits\Accessor;
|
|
|
|
public ?int $SequenceNumber = null;
|
|
protected ?Collection $_Collection = null;
|
|
}
|