Audio::MPD::Common::Item::Playlist - a playlist object


Audio-MPD-Common documentation Contained in the Audio-MPD-Common distribution.

Index


Code Index:

NAME

Top

Audio::MPD::Common::Item::Playlist - a playlist object

VERSION

Top

version 1.110550

DESCRIPTION

Top

Audio::MPD::Common::Item::Playlist is more a placeholder with some attributes.

The constructor should only be called by Audio::MPD::Common::Item's constructor.

ATTRIBUTES

Top

$item->last_modified;

Last modification date.

$item->playlist;

Path to the playlist file.

AUTHOR

Top

  Jerome Quelin

COPYRIGHT AND LICENSE

Top


Audio-MPD-Common documentation Contained in the Audio-MPD-Common distribution.

#
# This file is part of Audio-MPD-Common
#
# This software is copyright (c) 2007 by Jerome Quelin.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
use 5.008;
use strict;
use warnings;

package Audio::MPD::Common::Item::Playlist;
BEGIN {
  $Audio::MPD::Common::Item::Playlist::VERSION = '1.110550';
}
# ABSTRACT: a playlist object

use Moose;
use MooseX::Has::Sugar;
use MooseX::Types::Moose qw{ Str };

use base qw{ Audio::MPD::Common::Item };


# -- public attributes


has last_modified => ( rw, isa=>Str );
has playlist      => ( rw, isa=>Str, required );

1;



__END__