11 lines
225 B
PHP
11 lines
225 B
PHP
<?php namespace Lucent\Core\Schema\Data\FieldProp;
|
|
|
|
class RelationFieldProp implements IFieldProp
|
|
{
|
|
public function __construct(
|
|
public array $schemas,
|
|
public int $min,
|
|
public int $max,
|
|
) {}
|
|
}
|