summaryrefslogtreecommitdiff
path: root/src/data/Profile.java
blob: e4ba6021a09e2837544abf8cb24d1e3b663893af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

package data;

/**
 * This class contains the data that is stored of a user.
 */
public class Profile {
    
    private boolean m_exists;
    
    private String m_name;
    
    private String m_realName;
    
    private String m_creationDate;
}