The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package FBP::NotebookPage;

use Mouse;

our $VERSION = '0.41';

extends 'FBP::Object';
with    'FBP::Children';

has label => (
	is  => 'ro',
	isa => 'Str',
);

has bitmap => (
	is  => 'ro',
	isa => 'Str',
);

has select => (
	is  => 'ro',
	isa => 'Bool',
);

1;