package gametool.helpers;

import java.io.Serializable;

/**
 * Simple value-class for recent ccu (when and how much).
 * Leaves in .helpers package to avoid accidental rewriting by database entity class generator.
 *
 * @author andrey.kuprishov
 */
@SuppressWarnings({"PublicField"})
public class RecentCCU implements Serializable {
  private static final long serialVersionUID = 6944411571530581916L;
  /**
   * Time when ccu was logged.
   */
  public long time = -1L;
  /**
   * Number of concurrent users logged.
   */
  public int  ccu  = -1;
}
