TV::Anytime::Genre - Represent a genre


TV-Anytime documentation Contained in the TV-Anytime distribution.

Index


Code Index:

NAME

Top

TV::Anytime::Genre - Represent a genre

SYNOPSIS

Top

  my $name  = $genre->name;
  my $value = $genre->value;

DESCRIPTION

Top

The TV::Anytime::Genre represents a genre.

METHODS

Top

name

Return the name of the genre:

  my $name  = $genre->name;

value

Returns the value of the genre:

  my $value = $genre->value;

SEE ALSO

Top

TV::Anytime

BUGS

Top

Please report any bugs or feature requests to bug-TV-Anytime@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Top

Leon Brocard acme@astray.com

LICENCE AND COPYRIGHT

Top


TV-Anytime documentation Contained in the TV-Anytime distribution.

package TV::Anytime::Genre;
use strict;
use warnings;
use base 'Class::Accessor::Chained::Fast';
__PACKAGE__->mk_accessors(qw(name value));

1;

__END__