]> git.mxchange.org Git - friendica.git/blob - src/Model/ProfileField.php
Create new ProfileField classes
[friendica.git] / src / Model / ProfileField.php
1 <?php
2
3 namespace Friendica\Model;
4
5 use Friendica\BaseModel;
6
7 /**
8  * Custom profile field model class.
9  *
10  * Custom profile fields are user-created arbitrary profile fields that can be assigned a permission set to restrict its
11  * display to specific Friendica contacts as it requires magic authentication to work.
12  *
13  * @property int    uid
14  * @property int    order
15  * @property int    psid
16  * @property string label
17  * @property string value
18  * @property string created
19  * @property string edited
20  */
21 class ProfileField extends BaseModel
22 {
23
24 }