22 lines
246 B
PHP
22 lines
246 B
PHP
|
<?php
|
||
|
namespace OpenApi\LinkExample;
|
||
|
|
||
|
/**
|
||
|
* @OA\Schema(schema="user")
|
||
|
*/
|
||
|
class User
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @OA\Property()
|
||
|
* @var string
|
||
|
*/
|
||
|
public $username;
|
||
|
|
||
|
/**
|
||
|
* @OA\Property()
|
||
|
* @var string
|
||
|
*/
|
||
|
public $uuid;
|
||
|
}
|