20 lines
184 B
PHP
20 lines
184 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* 属性值feature
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class Feature
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 属性键
|
||
|
**/
|
||
|
public $attr_key;
|
||
|
|
||
|
/**
|
||
|
* 属性值
|
||
|
**/
|
||
|
public $attr_value;
|
||
|
}
|
||
|
?>
|