AzuraCast/src/Radio/Enums/AdapterTypeInterface.php

15 lines
218 B
PHP

<?php
declare(strict_types=1);
namespace App\Radio\Enums;
interface AdapterTypeInterface
{
public function getValue(): string;
public function getName(): string;
public function getClass(): ?string;
}