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

/**
 * This class contains all data that is stored of a user by twitter.
 */
public class Profile {

    // The displayed name of the user.
    private String m_displayName;

    // The real name of the user (when set)
    private String m_realName;

    // When the profile is created.
    private String m_creationDate;
}