]> git.mxchange.org Git - friendica.git/blob - src/Model/FSuggest.php
Merge pull request #8226 from nupplaphil/bug/wait_for_conn
[friendica.git] / src / Model / FSuggest.php
1 <?php
2
3 namespace Friendica\Model;
4
5 use Friendica\BaseModel;
6
7 /**
8  * Model for interacting with a friend suggestion
9  *
10  * @property int uid
11  * @property int cid
12  * @property string name
13  * @property string url
14  * @property string request
15  * @property string photo
16  * @property string note
17  * @property string created
18  */
19 class FSuggest extends BaseModel
20 {
21
22 }