package SampleDatabase;

/* SampleDatabase/Antiques_Row.java
 *
 * Copyright (c) 1999 Chris Studholme <chris.studholme@utoronto.ca>
 *
 * May be copied or modified under the terms of the GNU General Public
 * License.  See COPYING for more information.
 */

/**
 * <p>See TableTemplate for information about this class.
 *
 * @author chris.studholme@utoronto.ca
 */

class Antiques_Row {
    
    public String SellerID;
    public String BuyerID;
    public String Item;
    public double Price;

    public Antiques_Row(String seller, String buyer, 
			String item, double price) {
	SellerID=seller;
	BuyerID=buyer;
	Item=item;
	Price=price;
    }

};
