feat: add RDAP response dto

This commit is contained in:
Maël Gangloff
2025-11-08 17:34:29 +01:00
parent d769c48955
commit b777683c50
14 changed files with 325 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Entity\RdapResponse;
class Link
{
public string $href;
public string $value;
public string $rel;
}