Merge pull request #8210 from nupplaphil/task/mod_fsuggest

Move mod/fsuggest to src/Module/SuggestFriend
This commit is contained in:
Hypolite Petovan 2020-01-31 18:43:32 -05:00 committed by GitHub
commit 96b9619608
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 244 additions and 218 deletions

22
src/Model/FSuggest.php Normal file
View file

@ -0,0 +1,22 @@
<?php
namespace Friendica\Model;
use Friendica\BaseModel;
/**
* Model for interacting with a friend suggestion
*
* @property int uid
* @property int cid
* @property string name
* @property string url
* @property string request
* @property string photo
* @property string note
* @property string created
*/
class FSuggest extends BaseModel
{
}