| Audio-MPD-Common documentation | Contained in the Audio-MPD-Common distribution. |
Audio::MPD::Common::Item::Playlist - a playlist object
version 1.110550
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.
Last modification date.
Path to the playlist file.
Jerome Quelin
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.
| 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__