Move mod/fsuggest to src/Module/SuggestFriends

This commit is contained in:
nupplaPhil
2020-01-31 23:50:46 +01:00
parent 4ab893a561
commit 34f4aedb87
9 changed files with 236 additions and 7 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 suggest
*
* @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
{
}