| Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/Label/ |
| Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/Label/Label.php |
<?php
namespace Bitrix\Sale\Label;
class Label
{
public function __construct(private string $name, private string $value)
{
}
public function getName(): string
{
return $this->name;
}
public function getValue(): string
{
return $this->value;
}
}