
/**
 * Models a car as used in a demolition derby event.
 *
 * @author Zach Tomaszewski
 * @version 25 Feb 2008
 */
public class DerbyCar {

  /** This car's two-digit derby entry ID number */
  public int IDNumber;

  /** The name of this car's driver */
  public String driver;

  /** This car's show name or other description */
  public String description;

  /** The dollar value of the car */
  public double value;

}

