20 lines
184 B
PHP
Raw Normal View History

2023-10-10 14:54:50 +08:00
<?php
/**
* 属性值feature
* @author auto create
*/
class Feature
{
/**
* 属性键
**/
public $attr_key;
/**
* 属性值
**/
public $attr_value;
}
?>