. */ namespace SP\Domain\Common\Attributes; use Attribute; /** * Class Encryptable */ #[Attribute(Attribute::TARGET_CLASS)] final readonly class Encryptable { public function __construct(private string $dataProperty, private string $keyProperty) { } public function getDataProperty(): string { return $this->dataProperty; } public function getKeyProperty(): string { return $this->keyProperty; } }