lean-api/src/Attribute/EntityField.php
2025-04-15 18:47:58 +00:00

18 lines
495 B
PHP

<?php
namespace Lean\Api\Attribute;
#[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_CLASS)]
class EntityField
{
public function __construct(
public string $description = "",
public bool $mandatory = false,
public ?int $minLength = null,
public ?int $maxLength = null,
public ?string $regexFormat = null,
public mixed $example = null,
public ?string $field = null,
public ?string $setterMethod = null,
) {}
}