1
0
mirror of synced 2025-01-25 01:31:41 +03:00
2021-05-18 09:23:45 +03:00

36 lines
651 B
PHP

<?php
namespace RetailCrm\DeliveryModuleBundle\Model;
use JMS\Serializer\Annotation as Serializer;
class Unit
{
/**
* @var string
*
* @Serializer\Groups({"get", "set"})
* @Serializer\SerializedName("code")
* @Serializer\Type("string")
*/
public $code;
/**
* @var string
*
* @Serializer\Groups({"get", "set"})
* @Serializer\SerializedName("name")
* @Serializer\Type("string")
*/
public $name;
/**
* @var string
*
* @Serializer\Groups({"get", "set"})
* @Serializer\SerializedName("sym")
* @Serializer\Type("string")
*/
public $sym;
}