/******************************************************************************
 * Genre.java - Secondary domain object from plex
 * $Id: Genre.java,v 1.1 2014/10/12 07:19:52 dick Exp $
 * 
 * BuckoVidLib - The BuckoSoft Video Library
 * Copyright(c) 2014 - Dick Balaska
 * 
 * $Log: Genre.java,v $
 * Revision 1.1  2014/10/12 07:19:52  dick
 * Genre object from plex.
 *
 */
package tv.plex.domain;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name="Genre")
public class Genre {
	private	String	tag;

	/**
	 * @return the tag
	 */
	@XmlAttribute
	public String getTag() {
		return tag;
	}

	/**
	 * @param tag the tag to set
	 */
	public void setTag(String tag) {
		this.tag = tag;
	}
	
}
