18 lines
249 B
PHP
18 lines
249 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Application\Models;
|
|
|
|
use JMS\Serializer\Annotation\SerializedName;
|
|
use JMS\Serializer\Annotation\Type;
|
|
|
|
class Author
|
|
{
|
|
use Meta;
|
|
|
|
#[SerializedName('name')]
|
|
#[Type('string')]
|
|
private string $name;
|
|
}
|