Files
ooo-user/src/main/java/com/threerings/user/DetailedUser.java
T
2011-10-05 09:37:10 -07:00

35 lines
670 B
Java

//
// $Id$
package com.threerings.user;
import java.sql.Date;
/**
* Used to load detailed information about a user from the OOO user
* database tables.
*/
public class DetailedUser
{
/** The user's assigned integer userid. */
public int userId;
/** The user's chosen username. */
public String username;
/** The date this record was created. */
public Date created;
/** The user's email address. */
public String email;
/** The user's birthday. */
public Date birthday;
/** The user's gender. */
public byte gender;
/** The missive provided by the user during registration. */
public String missive;
}