package SampleDatabase;

/* SampleDatabase/Orders_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 Orders_Row {
    
    public String OwnerID;
    public String ItemDesired;

    public Orders_Row(String id, String item) {
	OwnerID=id;
	ItemDesired=item;
    }

};
