The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package WebService::DMM::Series;
use strict;
use warnings;

use Class::Accessor::Lite (
    new => 1,
    ro  => [qw/id name/],
);

1;

__END__

=encoding utf-8

=for stopwords

=head1 NAME

WebService::DMM::Series - Series class

=head1 INTERFACE

=head2 Accessor

=over

=item id : String

Series ID

=item name : String

Series name

=back

=head1 AUTHOR

Syohei YOSHIDA E<lt>syohex@gmail.comE<gt>

=head1 COPYRIGHT

Copyright 2013 - Syohei YOSHIDA

=head1 SEE ALSO

=head1 LICENSE

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut