1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Annotation; 6 7/** 8 * @Annotation 9 * @Target("CLASS") 10 */ 11final class XmlRoot 12{ 13 /** 14 * @Required 15 * @var string 16 */ 17 public $name; 18 19 /** 20 * @var string 21 */ 22 public $namespace; 23 24 /** 25 * @var string 26 */ 27 public $prefix; 28} 29