<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">

<!-- Hibernate mapping file for BuckoVidLib - WishList
   - $Id: WishList.hbm.xml,v 1.2 2015/04/01 02:47:33 dick Exp $
   -
   - BuckoVidLib - The BuckoSoft Video Library
   - Copyright(c) 2014 - Dick Balaska
   -
   - $Log: WishList.hbm.xml,v $
   - Revision 1.2  2015/04/01 02:47:33  dick
   - Update dtd and table names are plural.
   -
   - Revision 1.1  2014/10/23 05:00:10  dick
   - WishList handling.
   -
   -->

<hibernate-mapping>
	<class name="com.buckosoft.BuckoVidLib.domain.WishList" table="misc_wishlist">
		<id name="id" column = "id">
			<generator class="native"/>
		</id>
	 	<property name="name" />
	 	<property name="year" />
		<property name="comment" />
		<property name="date" type="timestamp" />
	</class>
</hibernate-mapping>
