11 lines
186 B
PHP
11 lines
186 B
PHP
|
|
<?php namespace Lucent\Core\Schema\Data;
|
||
|
|
|
||
|
|
class Field
|
||
|
|
{
|
||
|
|
public function __construct(
|
||
|
|
public string $id,
|
||
|
|
public string $label,
|
||
|
|
public string $type,
|
||
|
|
) {}
|
||
|
|
}
|