Weather::YR::Textforecast::Product - Stores a product type description


Weather-YR documentation Contained in the Weather-YR distribution.

Index


Code Index:

NAME

Top

Weather::YR::Textforecast::Product - Stores a product type description

DESCRIPTION

Top

This module stores a product type description of the forecasts.

METHODS

Top

name

Accessor for the name of the product.

description

Accessor for the product description.

SEE ALSO

Top

Weather::YR::Textforecast

AUTHOR

Top

Knut-Olav, <knut-olav@hoven.ws>

COPYRIGHT AND LICENSE

Top


Weather-YR documentation Contained in the Weather-YR distribution.
package Weather::YR::Textforecast::Product;

use strict;
use warnings;

use base qw/Class::Accessor::Fast/;

__PACKAGE__->mk_accessors('name');
__PACKAGE__->mk_accessors('description');

1;