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

25 lines
465 B
Java

//
// $Id$
package com.threerings.user;
import java.sql.Date;
/**
* Retains information about a historical user registration.
*/
public class HistoricalUser
{
/** 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 affiliate site with which this user is associated. */
public int siteId;
}