mirror of
https://github.com/friendica/friendica
synced 2025-04-26 16:30:12 +00:00
Move mod/fsuggest to src/Module/SuggestFriends
This commit is contained in:
parent
4ab893a561
commit
34f4aedb87
9 changed files with 236 additions and 7 deletions
22
src/Model/FSuggest.php
Normal file
22
src/Model/FSuggest.php
Normal 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
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue