forked from surebert/surebert-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.php
More file actions
63 lines (52 loc) · 757 Bytes
/
User.php
File metadata and controls
63 lines (52 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* Describe the most basic user in any sb framework system. All users should extend this user
* @author visco
* @package sb_User
*
*/
class sb_User{
/**
* The last name of the person
*
* @var string
*/
public $lname;
/**
* The first name of the person
*
* @var string
*/
public $fname;
/**
* The sex of the person
*
* @var string m or f
*/
public $sex;
/**
* The preferred display name of the person
*
* @var string
*/
public $dname;
/**
* The username of the user
*
* @var string
*/
public $uname;
/**
* The users id in terms of the application
*
* @var string
*/
public $id;
/**
* The email address of the user
*
* @var string
*/
public $email;
}
?>