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

23 lines
444 B
Java

//
// $Id$
package com.threerings.user;
import java.sql.Timestamp;
/**
* Contains additional information on users that have paid us in one form or
* another.
*/
public class OOOBillAuxData
{
/** The user's unique identifier. */
public int userId;
/** The first time the user bought coins **/
public Timestamp firstCoinBuy;
/** The most recent time the user bought coins **/
public Timestamp latestCoinBuy;
}