You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
487 B
65 lines
487 B
<?php
|
|
|
|
/**
|
|
* 1
|
|
* @author auto create
|
|
*/
|
|
class Author
|
|
{
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $avatar_media_id;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $icon_media_id;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $is_owner;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $nick;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $owner;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $show_name;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $staff_id;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $tag;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $title;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $type;
|
|
|
|
/**
|
|
* 1
|
|
**/
|
|
public $user_role;
|
|
}
|
|
?>
|