AzuraCast/src/Entity/Api/Traits/HasLinks.php

20 lines
316 B
PHP

<?php
namespace App\Entity\Api\Traits;
use OpenApi\Annotations as OA;
trait HasLinks
{
/**
* @OA\Property(
* @OA\Items(
* type="string",
* example="http://localhost/api/stations/1/queue/1"
* )
* )
* @var array
*/
public array $links = [];
}