#---------------------------------------------------------------
# ____                   _ _         ____  _
#|  _ \ ___  _   _  __ _| | |_ _   _/ ___|| |__   __ _ _ __ ___
#| |_) / _ \| | | |/ _` | | __| | | \___ \| '_ \ / _` | '__/ _ \
#|  _ < (_) | |_| | (_| | | |_| |_| |___) | | | | (_| | | |  __/
#|_| \_\___/ \__, |\__,_|_|\__|\__, |____/|_| |_|\__,_|_|  \___|
#            |___/             |___/
#
# Copyright (C) 2011 RoyaltyShare, Inc.   All Rights Reserved
#---------------------------------------------------------------
package BookPub::Market::WatchList::Static::NewReleases;
use strict;
use warnings;
use Data::Dumper;

use lib '/app/tools/common/lib';
use lib '/app/tools/bookpub/lib';
use Common::RSApp;
use Common::Util;
use Common::Assert;
use Common::FormObject;
use BookPub::DB::Item::WatchList;
use BookPub::DB::Item::WatchListItem;

use base 'BookPub::Market::WatchList::Static';

sub GlobalID    { 'new_releases' }
sub Name        { "New Releases" }
sub Description { "All books, physical and digital, released in the last thirty days." }

sub PublicationDate { 30 }
sub Format          { }
sub Rank            { }
sub Market          { }
sub Author          { }
sub ImprintID       { }
sub PublisherID     { }
sub Price           { }

###
1;    #
###
