Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/Label/
Upload File :
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;
	}
}