Current File : /home/kelaby89/abl.academy/wp-content/plugins/thim-core/inc/customizer/modules/css/property.php
<?php
namespace ThimPress\Customizer\Modules\CSS;

class Property {

	protected $property;

	protected $value;

	public function __construct( $property, $value ) {
		$this->property = $property;
		$this->value    = $value;
		$this->process_value();
	}

	protected function process_value() {

	}

	public function get_value() {
		return $this->value;
	}
}