<?php

namespace OpenApi\Examples\PetstoreSwaggerIo;

/**
 * @OA\Schema(
 *     @OA\Xml(name="Category")
 * )
 */
class Category
{

    /**
     * @OA\Property(format="int64")
     *
     * @var int
     */
    public $id;

    /**
     * @OA\Property
     *
     * @var string
     */
    public $name;
}
